* win32-nat.c (psapi_module_handle): Remove static.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / mb-ctor.exp
CommitLineData
ed0616c6
VP
1# Copyright 2007
2# Free Software Foundation, Inc.
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
6# the Free Software Foundation; either version 3 of the License, or
7# (at your option) any later version.
8#
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.
13#
14# You should have received a copy of the GNU General Public License
15# along with this program. If not, see <http://www.gnu.org/licenses/>.
16
17# Test that breakpoints on C++ constructors work, despite the
18# fact that gcc generates several versions of constructor function.
19
20if $tracelevel then {
21 strace $tracelevel
22}
23
c3ea9a14
DE
24if { [skip_cplus_tests] } { continue }
25
ed0616c6
VP
26set prms_id 0
27set bug_id 0
28
29set testfile "mb-ctor"
30set srcfile ${testfile}.cc
31set binfile ${objdir}/${subdir}/${testfile}
32
33if [get_compiler_info ${binfile} "c++"] {
34 return -1
35}
36
37if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug c++}] != "" } {
38 untested mb-ctor.exp
39 return -1
40}
41
42gdb_exit
43gdb_start
44gdb_reinitialize_dir $srcdir/$subdir
45gdb_load ${binfile}
46
47# Set a breakpoint with multiple locations
48# and a condition.
49
50gdb_test "break 'Derived::Derived(int)'" \
51 "Breakpoint.*at.* file .*$srcfile, line.*\\(2 locations\\).*" \
52 "set-breakpoint at ctor"
53
54gdb_test "break 'Derived::~Derived()'" \
55 "Breakpoint.*at.* file .*$srcfile, line.*\\(2 locations\\).*" \
56 "set-breakpoint at ctor"
57
58gdb_run_cmd
59gdb_expect {
60 -re "Breakpoint \[0-9\]+,.*Derived.*i=7.*$gdb_prompt $" {
61 pass "run to breakpoint"
62 }
63 -re "$gdb_prompt $" {
64 fail "run to breakpoint"
65 }
66 timeout {
67 fail "run to breakpoint (timeout)"
68 }
69}
70
71gdb_test "continue" \
72 ".*Breakpoint.*Derived.*i=15.*" \
73 "run to breakpoint 2"
74
75gdb_test "continue" \
76 ".*Breakpoint.*~Derived.*" \
77 "run to breakpoint 3"
78
79gdb_test "continue" \
80 ".*Breakpoint.*~Derived.*" \
81 "run to breakpoint 4"
82
83gdb_test "continue" \
84 ".*exited normally.*" \
85 "run to exit"
86
87
88
This page took 0.054021 seconds and 4 git commands to generate.