Automatic Copyright Year update after running gdb/copyright.py
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / mb-ctor.exp
CommitLineData
88b9d363 1# Copyright 2007-2022 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
c3ea9a14
DE
19if { [skip_cplus_tests] } { continue }
20
ed0616c6 21
f5f3a911 22standard_testfile .cc
ed0616c6 23
4c93b1db 24if [get_compiler_info "c++"] {
ed0616c6
VP
25 return -1
26}
27
5b362f04 28if {[prepare_for_testing "failed to prepare" $testfile $srcfile {debug c++}]} {
f5f3a911 29 return -1
ed0616c6
VP
30}
31
9ab4e744
DE
32if ![runto_main] then {
33 perror "couldn't run to breakpoint"
34 continue
35}
36
ed0616c6
VP
37# Set a breakpoint with multiple locations
38# and a condition.
39
40gdb_test "break 'Derived::Derived(int)'" \
f8eba3c6 41 "Breakpoint.*at.*: Derived::Derived.int.. \\(2 locations\\).*" \
ed0616c6
VP
42 "set-breakpoint at ctor"
43
9ab4e744
DE
44gdb_breakpoint [gdb_get_line_number "set breakpoint here"]
45
ed0616c6 46gdb_test "break 'Derived::~Derived()'" \
f8eba3c6 47 "Breakpoint.*at.*: Derived::~Derived... \\(2 locations\\).*" \
5a98ad69 48 "set-breakpoint at dtor"
ed0616c6 49
9ab4e744
DE
50gdb_test "continue" \
51 ".*Breakpoint.*Derived.*i=7.*" \
52 "run to breakpoint 1 v1"
53
3c2dcf90 54gdb_continue_to_breakpoint "set breakpoint here, first time" ".* breakpoint here"
ed0616c6
VP
55
56gdb_test "continue" \
57 ".*Breakpoint.*Derived.*i=15.*" \
9ab4e744
DE
58 "run to breakpoint 1 v2"
59
3c2dcf90 60gdb_continue_to_breakpoint "set breakpoint here, second time" ".* breakpoint here"
ed0616c6
VP
61
62gdb_test "continue" \
63 ".*Breakpoint.*~Derived.*" \
9ab4e744 64 "run to breakpoint 3 v1"
ed0616c6
VP
65
66gdb_test "continue" \
67 ".*Breakpoint.*~Derived.*" \
9ab4e744 68 "run to breakpoint 3 v2"
ed0616c6
VP
69
70gdb_test "continue" \
71 ".*exited normally.*" \
72 "run to exit"
73
74
75
This page took 1.663287 seconds and 4 git commands to generate.