PR c++/9197:
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / m-static.exp
CommitLineData
28e7fd62 1# Copyright 2002-2013 Free Software Foundation, Inc.
258093ca
MC
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
258093ca 6# (at your option) any later version.
e22f8b7c 7#
258093ca
MC
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#
258093ca 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/>.
258093ca
MC
15
16# Tests for member static data
17# 2002-05-13 Benjamin Kosnik <bkoz@redhat.com>
e70d6e3f 18# 2002-08-22 David Carlton <carlton@math.stanford.edu>
258093ca
MC
19
20# This file is part of the gdb testsuite
21
258093ca
MC
22if { [skip_cplus_tests] } { continue }
23
24#
25# test running programs
26#
258093ca 27
f5f3a911 28standard_testfile .cc m-static1.cc
258093ca 29
4c93b1db 30if [get_compiler_info] {
46fc714c
JK
31 return -1
32}
33
f5f3a911
TT
34if {[prepare_for_testing $testfile.exp $testfile \
35 [list $srcfile $srcfile2] {debug c++}]} {
36 return -1
37}
258093ca 38
258093ca
MC
39if ![runto_main] then {
40 perror "couldn't run to breakpoint"
41 continue
42}
43
254e6b9e
DE
44get_debug_format
45set non_dwarf [expr ! [test_debug_format "DWARF 2"]]
46
e70d6e3f
DC
47# First, run to after we've constructed all the objects:
48
49gdb_breakpoint [gdb_get_line_number "constructs-done"]
50gdb_continue_to_breakpoint "end of constructors"
51
52
258093ca 53# One.
258093ca 54
bb869963
SDJ
55# simple object, static const int, accessing via 'class::method::variable'
56# Regression test for PR c++/15203 and PR c++/15210
57gdb_test "print 'gnu_obj_1::method()::sintvar'" "\\$\[0-9\]+ = 4" \
58 "simple object, static const int, accessing via 'class::method::variable"
59
258093ca
MC
60# simple object, static const bool
61gdb_test "print test1.test" "\\$\[0-9\]* = true" "simple object, static const bool"
62
63# simple object, static const int
64gdb_test "print test1.key1" "\\$\[0-9\]* = 5" "simple object, static const int"
65
66# simple object, static long
67gdb_test "print test1.key2" "\\$\[0-9\]* = 77" "simple object, static long"
68
69# simple object, static enum
70gdb_test "print test1.value" "\\$\[0-9\]* = oriental" "simple object, static enum"
71
fce632b6
TT
72gdb_test "print test5.single_constructor" \
73 { = {void \(single_constructor \* const\)} 0x[0-9a-f]+ <single_constructor::single_constructor\(\)>} \
74 "simple object instance, print constructor"
75gdb_test "ptype test5.single_constructor" \
76 {type = void \(single_constructor \* const\)} \
77 "simple object instance, ptype constructor"
78gdb_test "ptype single_constructor::single_constructor" \
79 {type = void \(single_constructor \* const\)} \
80 "simple object class, ptype constructor"
81
e234dfaf
TT
82gdb_test "print test1.'~gnu_obj_1'" \
83 { = {void \(gnu_obj_1 \*( const)?, int\)} 0x[0-9a-f]+ <gnu_obj_1::~gnu_obj_1\(\)>} \
84 "simple object instance, print quoted destructor"
85
86gdb_test "ptype gnu_obj_1::'~gnu_obj_1'" \
87 {type = void \(gnu_obj_1 \* const\)} \
88 "simple object class, ptype quoted destructor"
89
258093ca 90# Two.
258093ca
MC
91
92# derived template object, base static const bool
93gdb_test "print test2.test" "\\$\[0-9\]* = true" "derived template object, base static const bool"
94
95# derived template object, base static const int
96gdb_test "print test2.key1" "\\$\[0-9\]* = 5" "derived template object, base static const int"
97
98# derived template object, base static long
99gdb_test "print test2.key2" "\\$\[0-9\]* = 77" "derived template object, base static long"
100
101# derived template object, base static enum
102gdb_test "print test2.value" "\\$\[0-9\].* = oriental" "derived template object, base static enum"
103
104# derived template object, static enum
105gdb_test "print test2.value_derived" "\\$\[0-9\].* = etruscan" "derived template object, static enum"
106
107# Three.
258093ca
MC
108
109# template object, static derived template data member's base static const bool
110gdb_test "print test3.data.test" "\\$\[0-9\].* = true" "template object, static const bool"
111
112# template object, static derived template data member's base static const int
113gdb_test "print test3.data.key1" "\\$\[0-9\].* = 5" "template object, static const int"
114
115# template object, static derived template data member's base static long
116gdb_test "print test3.data.key2" "\\$\[0-9\].* = 77" "template object, static long"
117
118# template object, static derived template data member's base static enum
119gdb_test "print test3.data.value" "\\$\[0-9\].* = oriental" "template object, static enum"
120
121# template object, static derived template data member's static enum
122gdb_test "print test3.data.value_derived" "\\$\[0-9\].* = etruscan" "template object, static derived enum"
123
e70d6e3f
DC
124# 2002-08-16
125# Four.
126
127# static const int initialized in another file.
128gdb_test "print test4.elsewhere" "\\$\[0-9\].* = 221" "static const int initialized elsewhere"
129
130# static const int that nobody initializes. From PR gdb/635.
46fc714c
JK
131if {[test_compiler_info {gcc-[0-3]-*}]
132 || [test_compiler_info {gcc-4-[0-4]-*}]} {
133 # There was an extra CU-level DW_TAG_variable as DW_AT_declaration
134 # with DW_AT_name = nowhere
135 # and DW_AT_MIPS_linkage_name = _ZN9gnu_obj_47nowhereE .
136 setup_xfail *-*-*
137}
b2dae948 138gdb_test "print test4.nowhere" "field nowhere is nonexistent or has been optimized out" "static const int initialized nowhere"
e70d6e3f 139
254e6b9e
DE
140# static const initialized in the class definition, PR gdb/11702.
141if { $non_dwarf } { setup_xfail *-*-* }
142gdb_test "print test4.everywhere" "\\$\[0-9\].* = 317" "static const int initialized in class definition"
143if { $non_dwarf } { setup_xfail *-*-* }
144gdb_test "print test4.somewhere" "\\$\[0-9\].* = 3.14\[0-9\]*" "static const float initialized in class definition"
145
146# Also make sure static const members can be found via "info var".
147if { $non_dwarf } { setup_xfail *-*-* }
148gdb_test "info variable everywhere" "File .*/m-static\[.\]h.*const int gnu_obj_4::everywhere;" "info variable everywhere"
149
e70d6e3f
DC
150# Perhaps at some point test4 should also include a test for a static
151# const int that was initialized in the header file. But I'm not sure
152# that GDB's current behavior in such situations is either consistent
153# across platforms or optimal, so I'm not including one now.
154
1c809c68
TT
155# Step into test1.method and examine the method-scoped static.
156# This is a regression test for PR 9708.
157gdb_test "step" "gnu_obj_1::method.*"
158gdb_test "print svar" " = true"
159
258093ca
MC
160gdb_exit
161return 0
This page took 1.125722 seconds and 4 git commands to generate.