Update copyright year in most headers.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / method2.exp
CommitLineData
4c38e0a4 1# Copyright 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
297561ac
PA
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
e22f8b7c 5# the Free Software Foundation; either version 3 of the License, or
297561ac
PA
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
e22f8b7c 14# along with this program. If not, see <http://www.gnu.org/licenses/>.
297561ac
PA
15
16# This file is part of the gdb testsuite
17
18# This tests setting a break in an ambiguous c++ method with
19# current_language set to c.
20
21if { [skip_cplus_tests] } { continue }
22
23set testfile "method2"
24set srcfile ${testfile}.cc
25set binfile ${objdir}/${subdir}/${testfile}
26
27if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug c++}] != "" } {
28 untested method2.exp
29 return -1
30}
31
32if [get_compiler_info $binfile "c++"] {
33 return -1
34}
35
36gdb_exit
37gdb_start
38gdb_reinitialize_dir $srcdir/$subdir
39gdb_load ${binfile}
40
41if ![runto_main] then {
42 perror "couldn't run to breakpoint"
43 continue
44}
45
46proc test_break { lang } {
47 global gdb_prompt
48
49 gdb_test "set lang $lang" \
50 "" \
51 "setting language $lang"
52
b598bfda 53 gdb_test_multiple "break A::method" "breaking in method ($lang)" {
297561ac
PA
54 -re ".0. cancel.*\[\r\n\]*.1. all.*\[\r\n\]*.2. A::method\\(A\\*\\) at .*\[\r\n\]*.3. A::method\\(int\\) at .*\[\r\n\]*\[\r\n\]*.4. A::method\\(\\) at .*\[\r\n\]*> $" {
55 gdb_test "0" \
56 "canceled" \
57 "breaking in method ($lang)"
58 }
297561ac
PA
59 }
60}
61
eae06beb
JB
62# We want in this test to double-check the contents of the multiple-choice
63# menu that's printed when a breakpoint location is ambiguous. So we need
64# to set multiple-symbols to "ask" first.
65gdb_test "set multiple-symbols ask" ""
66
297561ac
PA
67test_break "c"
68test_break "c++"
69
70gdb_continue_to_end "continue to end"
This page took 0.294769 seconds and 4 git commands to generate.