Update copyright year in most headers.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / mb-ctor.exp
1 # Copyright 2007, 2008, 2009, 2010 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
19 if $tracelevel then {
20 strace $tracelevel
21 }
22
23 if { [skip_cplus_tests] } { continue }
24
25 set prms_id 0
26 set bug_id 0
27
28 set testfile "mb-ctor"
29 set srcfile ${testfile}.cc
30 set binfile ${objdir}/${subdir}/${testfile}
31
32 if [get_compiler_info ${binfile} "c++"] {
33 return -1
34 }
35
36 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug c++}] != "" } {
37 untested mb-ctor.exp
38 return -1
39 }
40
41 gdb_exit
42 gdb_start
43 gdb_reinitialize_dir $srcdir/$subdir
44 gdb_load ${binfile}
45
46 if ![runto_main] then {
47 perror "couldn't run to breakpoint"
48 continue
49 }
50
51 # Set a breakpoint with multiple locations
52 # and a condition.
53
54 gdb_test "break 'Derived::Derived(int)'" \
55 "Breakpoint.*at.* file .*$srcfile, line.*\\(2 locations\\).*" \
56 "set-breakpoint at ctor"
57
58 gdb_breakpoint [gdb_get_line_number "set breakpoint here"]
59
60 gdb_test "break 'Derived::~Derived()'" \
61 "Breakpoint.*at.* file .*$srcfile, line.*\\(2 locations\\).*" \
62 "set-breakpoint at dtor"
63
64 gdb_test "continue" \
65 ".*Breakpoint.*Derived.*i=7.*" \
66 "run to breakpoint 1 v1"
67
68 gdb_continue_to_breakpoint "set breakpoint here" ".* breakpoint here"
69
70 gdb_test "continue" \
71 ".*Breakpoint.*Derived.*i=15.*" \
72 "run to breakpoint 1 v2"
73
74 gdb_continue_to_breakpoint "set breakpoint here" ".* breakpoint here"
75
76 gdb_test "continue" \
77 ".*Breakpoint.*~Derived.*" \
78 "run to breakpoint 3 v1"
79
80 gdb_test "continue" \
81 ".*Breakpoint.*~Derived.*" \
82 "run to breakpoint 3 v2"
83
84 gdb_test "continue" \
85 ".*exited normally.*" \
86 "run to exit"
87
88
89
This page took 0.032883 seconds and 5 git commands to generate.