PR gold/12525
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / m-static.exp
CommitLineData
7b6bb8da
JB
1# Copyright 2002, 2004, 2007, 2008, 2009, 2010, 2011
2# Free Software Foundation, Inc.
258093ca
MC
3
4# This program is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
e22f8b7c 6# the Free Software Foundation; either version 3 of the License, or
258093ca 7# (at your option) any later version.
e22f8b7c 8#
258093ca
MC
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
e22f8b7c 13#
258093ca 14# You should have received a copy of the GNU General Public License
e22f8b7c 15# along with this program. If not, see <http://www.gnu.org/licenses/>.
258093ca
MC
16
17# Tests for member static data
18# 2002-05-13 Benjamin Kosnik <bkoz@redhat.com>
e70d6e3f 19# 2002-08-22 David Carlton <carlton@math.stanford.edu>
258093ca
MC
20
21# This file is part of the gdb testsuite
22
23if $tracelevel then {
24 strace $tracelevel
25 }
26
27if { [skip_cplus_tests] } { continue }
28
29#
30# test running programs
31#
258093ca
MC
32
33set testfile "m-static"
dd8c8ee7
MC
34set srcfile "${testfile}.cc"
35set srcfile1 "${testfile}1.cc"
36set objfile "${testfile}.o"
37set objfile1 "${testfile}1.o"
f8d4bac4 38set binfile "${objdir}/${subdir}/${testfile}"
258093ca 39
dd8c8ee7 40if { [gdb_compile "$srcdir/$subdir/$srcfile" "$objdir/$subdir/$objfile" object {debug c++}] != "" } {
b60f0898
JB
41 untested m-static.exp
42 return -1
258093ca
MC
43}
44
dd8c8ee7 45if { [gdb_compile "$srcdir/$subdir/$srcfile1" "$objdir/$subdir/$objfile1" object {debug c++}] != "" } {
b60f0898
JB
46 untested m-static.exp
47 return -1
f8d4bac4
MC
48}
49
dd8c8ee7 50if { [gdb_compile "$objdir/$subdir/$objfile $objdir/$subdir/$objfile1" "${binfile}" executable {debug c++}] != "" } {
b60f0898
JB
51 untested m-static.exp
52 return -1
258093ca
MC
53}
54
55gdb_exit
56gdb_start
57gdb_reinitialize_dir $srcdir/$subdir
58gdb_load ${binfile}
59
258093ca
MC
60if ![runto_main] then {
61 perror "couldn't run to breakpoint"
62 continue
63}
64
254e6b9e
DE
65get_debug_format
66set non_dwarf [expr ! [test_debug_format "DWARF 2"]]
67
e70d6e3f
DC
68# First, run to after we've constructed all the objects:
69
70gdb_breakpoint [gdb_get_line_number "constructs-done"]
71gdb_continue_to_breakpoint "end of constructors"
72
73
258093ca 74# One.
258093ca
MC
75
76# simple object, static const bool
77gdb_test "print test1.test" "\\$\[0-9\]* = true" "simple object, static const bool"
78
79# simple object, static const int
80gdb_test "print test1.key1" "\\$\[0-9\]* = 5" "simple object, static const int"
81
82# simple object, static long
83gdb_test "print test1.key2" "\\$\[0-9\]* = 77" "simple object, static long"
84
85# simple object, static enum
86gdb_test "print test1.value" "\\$\[0-9\]* = oriental" "simple object, static enum"
87
88# Two.
258093ca
MC
89
90# derived template object, base static const bool
91gdb_test "print test2.test" "\\$\[0-9\]* = true" "derived template object, base static const bool"
92
93# derived template object, base static const int
94gdb_test "print test2.key1" "\\$\[0-9\]* = 5" "derived template object, base static const int"
95
96# derived template object, base static long
97gdb_test "print test2.key2" "\\$\[0-9\]* = 77" "derived template object, base static long"
98
99# derived template object, base static enum
100gdb_test "print test2.value" "\\$\[0-9\].* = oriental" "derived template object, base static enum"
101
102# derived template object, static enum
103gdb_test "print test2.value_derived" "\\$\[0-9\].* = etruscan" "derived template object, static enum"
104
105# Three.
258093ca
MC
106
107# template object, static derived template data member's base static const bool
108gdb_test "print test3.data.test" "\\$\[0-9\].* = true" "template object, static const bool"
109
110# template object, static derived template data member's base static const int
111gdb_test "print test3.data.key1" "\\$\[0-9\].* = 5" "template object, static const int"
112
113# template object, static derived template data member's base static long
114gdb_test "print test3.data.key2" "\\$\[0-9\].* = 77" "template object, static long"
115
116# template object, static derived template data member's base static enum
117gdb_test "print test3.data.value" "\\$\[0-9\].* = oriental" "template object, static enum"
118
119# template object, static derived template data member's static enum
120gdb_test "print test3.data.value_derived" "\\$\[0-9\].* = etruscan" "template object, static derived enum"
121
e70d6e3f
DC
122# 2002-08-16
123# Four.
124
125# static const int initialized in another file.
126gdb_test "print test4.elsewhere" "\\$\[0-9\].* = 221" "static const int initialized elsewhere"
127
128# static const int that nobody initializes. From PR gdb/635.
b2dae948 129gdb_test "print test4.nowhere" "field nowhere is nonexistent or has been optimized out" "static const int initialized nowhere"
e70d6e3f 130
254e6b9e
DE
131# static const initialized in the class definition, PR gdb/11702.
132if { $non_dwarf } { setup_xfail *-*-* }
133gdb_test "print test4.everywhere" "\\$\[0-9\].* = 317" "static const int initialized in class definition"
134if { $non_dwarf } { setup_xfail *-*-* }
135gdb_test "print test4.somewhere" "\\$\[0-9\].* = 3.14\[0-9\]*" "static const float initialized in class definition"
136
137# Also make sure static const members can be found via "info var".
138if { $non_dwarf } { setup_xfail *-*-* }
139gdb_test "info variable everywhere" "File .*/m-static\[.\]h.*const int gnu_obj_4::everywhere;" "info variable everywhere"
140
e70d6e3f
DC
141# Perhaps at some point test4 should also include a test for a static
142# const int that was initialized in the header file. But I'm not sure
143# that GDB's current behavior in such situations is either consistent
144# across platforms or optimal, so I'm not including one now.
145
1c809c68
TT
146# Step into test1.method and examine the method-scoped static.
147# This is a regression test for PR 9708.
148gdb_test "step" "gnu_obj_1::method.*"
149gdb_test "print svar" " = true"
150
258093ca
MC
151gdb_exit
152return 0
This page took 0.876606 seconds and 4 git commands to generate.