1 # Copyright 2007-2019 Free Software Foundation, Inc.
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.
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.
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/>.
16 # This file is part of the gdb testsuite
18 # This tests setting a break in an ambiguous c++ method with
19 # current_language set to c.
21 if { [skip_cplus_tests] } { continue }
25 if {[prepare_for_testing "failed to prepare" $testfile $srcfile {debug c++}]} {
30 perror "couldn't run to breakpoint"
34 proc test_break { lang } {
37 gdb_test "set lang $lang" \
39 "setting language $lang"
41 # Menu items should be alphabetical
42 set ovlds [lsort {"" "int" "A*"}]
43 set items {"cancel" "all"}
45 lappend items "A::method($ovld)"
50 lappend menu_items ".$idx. .*[string_to_regexp $item]"
53 set expect [join $menu_items {.*[\r\n]*}]
54 gdb_test_multiple "break A::method" "breaking in method ($lang)" {
58 "breaking in method ($lang)"
63 # We want in this test to double-check the contents of the multiple-choice
64 # menu that's printed when a breakpoint location is ambiguous. So we need
65 # to set multiple-symbols to "ask" first.
66 gdb_test_no_output "set multiple-symbols ask"
71 gdb_continue_to_end "continue to end"