* gdb.cp/abstract-origin.exp: Use standard_testfile.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / casts.exp
CommitLineData
0b302171 1# Copyright 2002-2004, 2007-2012 Free Software Foundation, Inc.
10abb1d4
JB
2
3# This program is free software; you can redistribute it and/or modify
4# it under the terms of the GNU General Public License as published by
e22f8b7c 5# the Free Software Foundation; either version 3 of the License, or
10abb1d4 6# (at your option) any later version.
e22f8b7c 7#
10abb1d4
JB
8# This program is distributed in the hope that it will be useful,
9# but WITHOUT ANY WARRANTY; without even the implied warranty of
10# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11# GNU General Public License for more details.
e22f8b7c 12#
10abb1d4 13# You should have received a copy of the GNU General Public License
e22f8b7c 14# along with this program. If not, see <http://www.gnu.org/licenses/>.
10abb1d4 15
10abb1d4
JB
16# This file is part of the gdb testsuite
17
18# Test casting, especially between class types or pointer-to-class
19# types.
20
21# This file is part of the gdb testsuite
22
10abb1d4
JB
23#
24# test running programs
25#
26
10abb1d4
JB
27
28if { [skip_cplus_tests] } { continue }
29
f5f3a911 30standard_testfile .cc
10abb1d4 31
4c93b1db 32if [get_compiler_info "c++"] {
10abb1d4
JB
33 return -1;
34}
35
f5f3a911
TT
36if {[prepare_for_testing $testfile.exp $testfile $srcfile {debug c++}]} {
37 return -1
10abb1d4
JB
38}
39
6eac95e3
CV
40if ![runto_main] then {
41 perror "couldn't run to breakpoint"
42 continue
43}
44
10abb1d4
JB
45gdb_test "break [gdb_get_line_number "casts.exp: 1"]" \
46 "Breakpoint.*at.* file .*" \
47 ""
48
6eac95e3 49gdb_test "continue" "Breakpoint .* at .*casts.cc.*" ""
10abb1d4
JB
50
51# Casting a pointer to a base class to a pointer to a derived class
52# should yield the entire derived class. Until August 2002, GDB got
53# the enclosing type on `(B *) a' wrong: while the value's static type
54# was `B *', as it should be, the enclosing type (which is supposed to
55# be the dynamic type) was `A *'. It's senseless to have a static
56# type derived from the dynamic type; it should be the other way
57# 'round. Dereferencing this oddly typed pointer yielded a value in
58# which only the base class's members were initialized, since GDB uses
59# the enclosing type to decide how many bytes to read. Members from
60# the derived class were garbage, from GDB's address space.
61gdb_test "print * (B *) a" ".* = {<A> = {a = 42}, b = 1729}" \
62 "cast base class pointer to derived class pointer"
63
64# Check also that we get the same results from letting the compiler do
65# the dereference.
66gdb_test "print * b" ".* = {<A> = {a = 42}, b = 1729}" \
67 "let compiler cast base class pointer to derived class pointer"
f0050c20
AR
68
69# Check upcasting (it is trivial but still).
70gdb_test "print * (A *) b" ".* = {a = 42}" \
71 "cast derived class pointer to base class pointer"
72
73# Casting References.
74# Check upcasting.
75gdb_test "print (A &) br" ".* = .A &.* {a = 42}" \
76 "cast derived class reference to base class reference"
77
78# Check downcasting.
79gdb_test "print (B &) ar" ".* = .B.* {<A> = {a = 42}, b = 1729}" \
80 "cast base class reference to derived class reference"
81
82# Check compiler casting
83gdb_test "print br" ".* = .B.* {<A> = {a = 42}, b = 1729}" \
84 "let compiler cast base class reference to derived class reference"
4e8f195d
TT
85
86
87# A few basic tests of "new" casts.
88
89gdb_test "print const_cast<const B *> (b)" " = \\(const B \\*\\) $hex" \
90 "basic test of const_cast"
91
92gdb_test "print const_cast<void *> (0)" " = \\(void \\*\\) 0x0" \
93 "const_cast of 0"
94
95gdb_test "print static_cast<A *> (b)" " = \\(A \\*\\) $hex" \
96 "basic test of static_cast"
97
98gdb_test "print static_cast<A &> (*b)" " = \\(A \\&\\) @$hex: {a = 42}" \
99 "static_cast to reference type"
100
101gdb_test "print reinterpret_cast<A *> (b)" " = \\(A \\*\\) $hex" \
102 "basic test of reinterpret_cast"
103
104gdb_test "print reinterpret_cast<void> (b)" "Invalid reinterpret_cast" \
105 "test invalid reinterpret_cast"
106
107gdb_test "print reinterpret_cast<A &> (*b)" " = \\(A \\&\\) @$hex: {a = 42}" \
108 "reinterpret_cast to reference type"
109
110# Tests of dynamic_cast.
111
112set nonzero_hex "0x\[0-9A-Fa-f\]\[0-9A-Fa-f\]+"
113
114gdb_test "print dynamic_cast<void> (a)" \
115 ".*must be a pointer or reference type" \
116 "invalid dynamic_cast"
117
118gdb_test "print dynamic_cast<void *> (0)" \
119 " = \\(void \\*\\) 0x0" \
120 "dynamic_cast of 0 to void*"
121
122gdb_test "print dynamic_cast<Alpha *> (&derived)" \
123 " = \\(Alpha \\*\\) $nonzero_hex" \
124 "dynamic_cast simple upcast"
125
126gdb_test "print dynamic_cast<Alpha *> (&doublyderived)" \
127 " = \\(Alpha \\*\\) $nonzero_hex" \
128 "dynamic_cast upcast to unique base"
129
130gdb_test "print dynamic_cast<Alpha &> (derived)" \
410528f0 131 " = \\(Alpha \\&\\) @$nonzero_hex: {.* = ${nonzero_hex}( <vtable for Derived.*>)?}" \
4e8f195d
TT
132 "dynamic_cast simple upcast to reference"
133
134gdb_test "print dynamic_cast<Derived *> (ad)" \
9cb709b6 135 " = \\(Derived \\*\\) ${nonzero_hex}( <vtable for Derived.*>)?" \
4e8f195d
TT
136 "dynamic_cast simple downcast"
137
138gdb_test "print dynamic_cast<VirtuallyDerived *> (add)" \
139 " = \\(VirtuallyDerived \\*\\) $nonzero_hex" \
140 "dynamic_cast simple downcast to intermediate class"
141
142gdb_test "print dynamic_cast<VirtuallyDerived *> (ad)" \
143 " = \\(VirtuallyDerived \\*\\) 0x0" \
144 "dynamic_cast to non-existing base"
145
146gdb_test "print dynamic_cast<VirtuallyDerived &> (*ad)" \
147 "dynamic_cast failed" \
148 "dynamic_cast to reference to non-existing base"
149
150gdb_test "print dynamic_cast<DoublyDerived *> (add)" \
9cb709b6 151 " = \\(DoublyDerived \\*\\) ${nonzero_hex}( <vtable for DoublyDerived.*>)?" \
4e8f195d
TT
152 "dynamic_cast unique downcast"
153
154gdb_test "print dynamic_cast<Gamma *> (add)" \
155 " = \\(Gamma \\*\\) $nonzero_hex" \
156 "dynamic_cast to sibling"
This page took 1.046101 seconds and 4 git commands to generate.