* top.c (print_gdb_version): Update copyright year.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / mb-ctor.exp
CommitLineData
9b254dd1 1# Copyright 2007, 2008 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
25set prms_id 0
26set bug_id 0
27
28set testfile "mb-ctor"
29set srcfile ${testfile}.cc
30set binfile ${objdir}/${subdir}/${testfile}
31
32if [get_compiler_info ${binfile} "c++"] {
33 return -1
34}
35
36if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug c++}] != "" } {
37 untested mb-ctor.exp
38 return -1
39}
40
41gdb_exit
42gdb_start
43gdb_reinitialize_dir $srcdir/$subdir
44gdb_load ${binfile}
45
46# Set a breakpoint with multiple locations
47# and a condition.
48
49gdb_test "break 'Derived::Derived(int)'" \
50 "Breakpoint.*at.* file .*$srcfile, line.*\\(2 locations\\).*" \
51 "set-breakpoint at ctor"
52
53gdb_test "break 'Derived::~Derived()'" \
54 "Breakpoint.*at.* file .*$srcfile, line.*\\(2 locations\\).*" \
5a98ad69 55 "set-breakpoint at dtor"
ed0616c6
VP
56
57gdb_run_cmd
58gdb_expect {
59 -re "Breakpoint \[0-9\]+,.*Derived.*i=7.*$gdb_prompt $" {
60 pass "run to breakpoint"
61 }
62 -re "$gdb_prompt $" {
63 fail "run to breakpoint"
64 }
65 timeout {
66 fail "run to breakpoint (timeout)"
67 }
68}
69
70gdb_test "continue" \
71 ".*Breakpoint.*Derived.*i=15.*" \
72 "run to breakpoint 2"
73
74gdb_test "continue" \
75 ".*Breakpoint.*~Derived.*" \
76 "run to breakpoint 3"
77
78gdb_test "continue" \
79 ".*Breakpoint.*~Derived.*" \
80 "run to breakpoint 4"
81
82gdb_test "continue" \
83 ".*exited normally.*" \
84 "run to exit"
85
86
87
This page took 0.142791 seconds and 4 git commands to generate.