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