* breakpoint.c: #include "hashtab.h".
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / mb-inline.exp
CommitLineData
776592bf
DE
1# Copyright 2008 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# This file is part of the gdb testsuite.
17
18# This test verifies that setting breakpoint on line in inline
19# function will fire in all instantiations of that function.
20
21if $tracelevel then {
22 strace $tracelevel
23}
24
25if { [skip_cplus_tests] } { continue }
26
27set prms_id 0
28set bug_id 0
29
30set testfile "mb-inline"
31set hdrfile "${testfile}.h"
32set srcfile1 "${testfile}1.cc"
33set objfile1 "${testfile}1.o"
34set srcfile2 "${testfile}2.cc"
35set objfile2 "${testfile}2.o"
36set binfile "${objdir}/${subdir}/${testfile}"
37
38if { [gdb_compile "$srcdir/$subdir/$srcfile1" "$objdir/$subdir/$objfile1" object {debug c++}] != "" } {
39 untested mb-inline.exp
40 return -1
41}
42
43if { [gdb_compile "$srcdir/$subdir/$srcfile2" "$objdir/$subdir/$objfile2" object {debug c++}] != "" } {
44 untested mb-inline.exp
45 return -1
46}
47
48if { [gdb_compile "$objdir/$subdir/$objfile1 $objdir/$subdir/$objfile2" "${binfile}" executable {debug c++}] != "" } {
49 untested mb-inline.exp
50 return -1
51}
52
53if [get_compiler_info ${binfile} "c++"] {
54 return -1
55}
56
57gdb_exit
58gdb_start
59gdb_reinitialize_dir $srcdir/$subdir
60gdb_load ${binfile}
61
62set bp_location [gdb_get_line_number "set breakpoint here" $hdrfile]
63
64# Set a breakpoint with multiple locations.
65
66gdb_test "break $hdrfile:$bp_location" \
67 "Breakpoint.*at.* file .*$hdrfile, line.*\\(2 locations\\).*" \
68 "set breakpoint"
69
70gdb_run_cmd
71gdb_expect {
72 -re "Breakpoint \[0-9\]+,.*foo \\(i=0\\).*$gdb_prompt $" {
73 pass "run to breakpoint"
74 }
75 -re "$gdb_prompt $" {
76 fail "run to breakpoint"
77 }
78 timeout {
79 fail "run to breakpoint (timeout)"
80 }
81}
82
83gdb_test "continue" \
84 ".*Breakpoint.*foo \\(i=1\\).*" \
85 "run to breakpoint 2"
86
87# Try disabling a single location. We also test
88# that at least in simple cases, the enable/disable
89# state of locations survive "run".
90# Early bug would disable 1.1 and enable 1.2 when program is run.
91gdb_test "disable 1.2" "" "disabling location: disable"
92
93gdb_run_cmd
94gdb_expect {
95 -re "Breakpoint \[0-9\]+,.*foo \\(i=0\\).*$gdb_prompt $" {
96 pass "disabling location: run to breakpoint"
97 }
98 -re "$gdb_prompt $" {
99 fail "disabling location: run to breakpoint"
100 }
101 timeout {
102 fail "disabling location: run to breakpoint (timeout)"
103 }
104}
105
106gdb_test "continue" \
107 ".*Program exited normally.*" \
108 "continue with disabled breakpoint 1.2"
This page took 0.026118 seconds and 4 git commands to generate.