Clean-up gdb.ada test names
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.ada / fun_overload_menu.exp
CommitLineData
b811d2c2 1# Copyright 2015-2020 Free Software Foundation, Inc.
d72413e6
PMR
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
16load_lib "ada.exp"
17
18standard_ada_testfile foo
19
20if {[gdb_compile_ada "$srcfile" "$binfile" executable [list debug]] != "" } {
21 return -1
22}
23
24clean_restart ${testfile}
25
26set bp_location [gdb_get_line_number "BREAK" ${testdir}/foo.adb]
27runto "foo.adb:$bp_location"
28
29
30proc test_menu {expr function menu_entries selection output} {
31 set menu [multi_line "Multiple matches for $function" \
32 "\\\[0\\\] cancel" \
33 "$menu_entries" \
34 "> $"]
ba3e70b0 35 set test_name "multiple matches for $function {$expr}"
d72413e6
PMR
36 gdb_test_multiple "print $expr" "$test_name" \
37 {
38 -re "$menu" {
39 pass "$test_name"
40 }
41 default {
42 fail "$test_name"
43 }
44 }
45 gdb_test "$selection" "$output"
46}
47
48
49# Check that function signatures in overload menus are displayed as expected.
50
51# 1. Test with overloaded functions
ba3e70b0
KS
52with_test_prefix "func" {
53 test_menu "f (1, null)" "f" \
54 [multi_line \
55 "\\\[1\\\] foo\.f \\(integer; foo\.integer_access\\) return boolean at .*foo.adb:.*" \
56 "\\\[2\\\] foo\.f \\(foo\.new_integer; foo\.integer_access\\) return boolean at .*foo.adb:.*"] \
57 "1" "= true"
58}
d72413e6
PMR
59
60# 2. Test with overloaded procedures
ba3e70b0
KS
61with_test_prefix "proc" {
62 test_menu "p (1, null)" "p" \
63 [multi_line \
64 "\\\[1\\\] foo\.p \\(integer; foo\.integer_access\\) at .*foo.adb:.*" \
65 "\\\[2\\\] foo\.p \\(foo\.new_integer; foo\.integer_access\\) at .*foo.adb:.*" ] \
66 "1" "= (void)"
67}
d72413e6
PMR
68
69# 3. Test with signatures disabled
70gdb_test "set ada print-signatures off" ""
ba3e70b0
KS
71with_test_prefix "signatures disabled" {
72 test_menu "f (1, null)" "f" \
73 [multi_line \
74 "\\\[1\\\] foo\.f at .*foo.adb:.*" \
75 "\\\[2\\\] foo\.f at .*foo.adb:.*"] \
76 "1" "= true"
77}
This page took 0.512391 seconds and 4 git commands to generate.