]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.cp/method2.exp
Fixup testcases outputting own name as a test name and standardize failed compilation...
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.cp / method2.exp
CommitLineData
618f726f 1# Copyright 2007-2016 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
f5f3a911 23standard_testfile .cc
297561ac 24
d3dc44a6 25if {[prepare_for_testing $testfile.exp $testfile $srcfile {debug c++}]} {
84c93cd5 26 untested "failed to compile"
297561ac
PA
27 return -1
28}
29
d3dc44a6 30if {![runto_main]} {
297561ac
PA
31 perror "couldn't run to breakpoint"
32 continue
33}
34
35proc test_break { lang } {
36 global gdb_prompt
37
38 gdb_test "set lang $lang" \
39 "" \
40 "setting language $lang"
41
d3dc44a6
KS
42 # Menu items should be alphabetical
43 set ovlds [lsort {"" "int" "A*"}]
44 set items {"cancel" "all"}
45 foreach ovld $ovlds {
46 lappend items "A::method($ovld)"
47 }
48 set menu_items {}
49 set idx 0
50 foreach item $items {
51 lappend menu_items ".$idx. .*[string_to_regexp $item]"
52 incr idx
53 }
54 set expect [join $menu_items {.*[\r\n]*}]
b598bfda 55 gdb_test_multiple "break A::method" "breaking in method ($lang)" {
d3dc44a6 56 -re $expect {
297561ac
PA
57 gdb_test "0" \
58 "canceled" \
59 "breaking in method ($lang)"
60 }
297561ac
PA
61 }
62}
63
eae06beb
JB
64# We want in this test to double-check the contents of the multiple-choice
65# menu that's printed when a breakpoint location is ambiguous. So we need
66# to set multiple-symbols to "ask" first.
a8d52276 67gdb_test_no_output "set multiple-symbols ask"
eae06beb 68
297561ac
PA
69test_break "c"
70test_break "c++"
71
72gdb_continue_to_end "continue to end"