Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Unified Diff: gdb/testsuite/gdb.cp/anon-struct.exp

Issue 124383005: GDB 7.6.50 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@upstream
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gdb/testsuite/gdb.cp/anon-struct.cc ('k') | gdb/testsuite/gdb.cp/anon-union.exp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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"
+}
« no previous file with comments | « gdb/testsuite/gdb.cp/anon-struct.cc ('k') | gdb/testsuite/gdb.cp/anon-union.exp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698