Handle void * conversions in FreeBSD/x86 native code to fix C++ build.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / anon-struct.exp
index 4130e9c4bd9ef1c81bcb596f3ae3fc3594600008..4c4d8b13b98c90da904056afa4fabbea01aa19dd 100644 (file)
@@ -1,5 +1,5 @@
 # Tests for anonymous union support.
-# Copyright 2011-2012 Free Software Foundation, Inc.
+# Copyright 2011-2016 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
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-set testfile anon-struct
-set srcfile ${testfile}.cc
-set binfile ${objdir}/${subdir}/${testfile}
+standard_testfile .cc
+
 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"
+}
This page took 0.024369 seconds and 4 git commands to generate.