| Index: gdb/testsuite/gdb.cp/anon-struct.exp
|
| diff --git a/gdb/testsuite/gdb.cp/anon-struct.exp b/gdb/testsuite/gdb.cp/anon-struct.exp
|
| index b3a0806e74e573fbe2cb45f0d50b1030305db678..3446eb78b0f184a0052d975b07f090a9006138e8 100644
|
| --- a/gdb/testsuite/gdb.cp/anon-struct.exp
|
| +++ b/gdb/testsuite/gdb.cp/anon-struct.exp
|
| @@ -1,5 +1,5 @@
|
| # Tests for anonymous union support.
|
| -# Copyright 2011-2012 Free Software Foundation, Inc.
|
| +# Copyright 2011-2013 Free Software Foundation, Inc.
|
|
|
| # This program is free software; you can redistribute it and/or modify
|
| # it under the terms of the GNU General Public License as published by
|
| @@ -20,14 +20,25 @@ if { [prepare_for_testing ${testfile}.exp ${testfile} ${srcfile} {debug c++}] }
|
| return -1
|
| }
|
|
|
| -gdb_test "ptype t::t" "type = void \\(t \\* const\\)" \
|
| - "print type of t::t"
|
| +if { [istarget arm*-*-*] } {
|
| + gdb_test "ptype t::t" "type = struct t {\r\n C m;\r\n} \\*\\(t \\* const\\)" \
|
| + "print type of t::t"
|
| +} else {
|
| + gdb_test "ptype t::t" "type = void \\(t \\* const\\)" \
|
| + "print type of t::t"
|
| +}
|
|
|
| gdb_test "ptype X::t2" "type = struct X::t2 {\[\r\n \]*X::C2 m;\[\r\n \]*}" \
|
| "print type of X::t2"
|
|
|
| -gdb_test "ptype X::t2::t2" "type = void \\(X::t2 \\* const\\)" \
|
| - "print type of X::t2::t2"
|
| -
|
| -gdb_test "ptype t3::~t3" "type = void \\(t3 \\* const\\)" \
|
| - "print type of t3::~t3"
|
| +if { [istarget arm*-*-*] } {
|
| + gdb_test "ptype X::t2::t2" "type = struct X::t2 {\r\n X::C2 m;\r\n} \\*\\(X::t2 \\* const\\)" \
|
| + "print type of X::t2::t2"
|
| + gdb_test "ptype t3::~t3" "type = void \\*\\(t3 \\* const\\)" \
|
| + "print type of t3::~t3"
|
| +} else {
|
| + gdb_test "ptype X::t2::t2" "type = void \\(X::t2 \\* const\\)" \
|
| + "print type of X::t2::t2"
|
| + gdb_test "ptype t3::~t3" "type = void \\(t3 \\* const\\)" \
|
| + "print type of t3::~t3"
|
| +}
|
|
|