1# Copyright 2007-2020 Free Software Foundation, Inc.
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 { [skip_cplus_tests] } { continue }
20
21
22standard_testfile .cc
23
24if [get_compiler_info "c++"] {
25    return -1
26}
27
28if {[prepare_for_testing "failed to prepare" $testfile $srcfile {debug c++}]} {
29    return -1
30}
31
32if ![runto_main] then {
33    perror "couldn't run to breakpoint"
34    continue
35}
36
37# Set a breakpoint with multiple locations
38# and a condition.
39
40gdb_test "break 'Derived::Derived(int)'" \
41    "Breakpoint.*at.*: Derived::Derived.int.. \\(2 locations\\).*" \
42    "set-breakpoint at ctor"
43
44gdb_breakpoint [gdb_get_line_number "set breakpoint here"]
45
46gdb_test "break 'Derived::~Derived()'" \
47    "Breakpoint.*at.*: Derived::~Derived... \\(2 locations\\).*" \
48    "set-breakpoint at dtor"
49
50gdb_test "continue" \
51    ".*Breakpoint.*Derived.*i=7.*" \
52    "run to breakpoint 1 v1"
53
54gdb_continue_to_breakpoint "set breakpoint here" ".* breakpoint here"
55
56gdb_test "continue" \
57    ".*Breakpoint.*Derived.*i=15.*" \
58    "run to breakpoint 1 v2"
59
60gdb_continue_to_breakpoint "set breakpoint here" ".* breakpoint here"
61
62gdb_test "continue" \
63    ".*Breakpoint.*~Derived.*" \
64    "run to breakpoint 3 v1"
65
66gdb_test "continue" \
67    ".*Breakpoint.*~Derived.*" \
68    "run to breakpoint 3 v2"
69
70gdb_test "continue" \
71    ".*exited normally.*" \
72    "run to exit"
73
74
75
76