1 # Copyright 2005, 2007, 2009 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/>.
22 set testdir "complete"
23 set testfile "${testdir}/foo"
24 set srcfile ${srcdir}/${subdir}/${testfile}.adb
25 set binfile ${objdir}/${subdir}/${testfile}
27 file mkdir ${objdir}/${subdir}/${testdir}
28 if {[gdb_compile_ada "${srcfile}" "${binfile}" executable [list debug ]] != "" } {
34 gdb_reinitialize_dir $srcdir/$subdir
37 set bp_location [gdb_get_line_number "START" ${testdir}/foo.adb]
38 runto "foo.adb:$bp_location"
42 # A convenience function that verifies that the "complete EXPR" command
43 # returns the EXPECTED_OUTPUT.
45 proc test_gdb_complete { expr expected_output } {
46 gdb_test "complete p $expr" \
51 # A convenience function that verifies that the "complete EXPR" command
52 # does not genearte any output.
54 proc test_gdb_no_completion { expr } {
55 # FIXME: brobecker/2007-12-27: How do you verify that the command
56 # output is actually really empty??? For now, the following does
57 # not verify this at all:
58 test_gdb_complete "$expr" ""
61 # A convenience function that joins all the arguments together,
62 # with a regexp that matches zero-or-more end of lines in between
63 # each argument. This function is ideal to write the expected output
64 # of a GDB command that generates more than a couple of lines, as
65 # this allows us to write each line as a separate string, which is
66 # easier to read by a human being.
68 proc multi_line { args } {
69 return [join $args "\[\r\n\]*"]
71 # Try a global variable, only one match should be found:
73 test_gdb_complete "my_glob" \
74 "p my_global_variable"
76 # A global variable, inside a nested package:
78 test_gdb_complete "insi" \
81 # A global variable inside a nested package, but only giving part of
82 # the fully qualified name (top level package name missing):
84 test_gdb_no_completion "inner.insi"
86 # An incomplete nested package name, were lies a single symbol:
87 test_gdb_complete "pck.inne" \
88 "p pck.inner.inside_variable"
90 # A fully qualified symbol name, mangled...
91 test_gdb_complete "pck__inner__ins" \
92 "p pck__inner__inside_variable"
94 # A fully qualified symbol name...
95 test_gdb_complete "pck.inner.ins" \
96 "p pck.inner.inside_variable"
98 # Make sure that "inside" is not returned as a possible completion
100 test_gdb_no_completion "side"
102 # Verify that "Exported_Capitalized" is not returned as a match for
103 # "exported", since its symbol name contains capital letters.
104 test_gdb_no_completion "exported"
106 # check the "<...>" notation.
107 test_gdb_complete "<Exported" \
108 "p <Exported_Capitalized>"
110 # A global symbol, created by the binder, that starts with __gnat...
111 test_gdb_complete "__gnat_ada_main_progra" \
112 "p __gnat_ada_main_program_name"
114 # A global symbol, created by the binder, that starts with __gnat,
115 # and using the '<' notation.
116 test_gdb_complete "<__gnat_ada_main_prog" \
117 "p <__gnat_ada_main_program_name>"
120 test_gdb_complete "some" \
121 "p some_local_variable"
123 # A local variable variable, but in a different procedure. No match
124 # should be returned.
125 test_gdb_no_completion "not_in_sco"
127 # A fully qualified variable name that doesn't exist...
128 test_gdb_no_completion "pck.ins"
130 # A fully qualified variable name that does exist...
131 test_gdb_complete "pck.my" \
132 "p pck.my_global_variable"
134 # A fully qualified package name
135 test_gdb_complete "pck.inne" \
136 "p pck.inner.inside_variable"
138 # A fully qualified package name, with a dot at the end
139 test_gdb_complete "pck.inner." \
140 "p pck.inner.inside_variable"
142 # Two matches, from the global scope:
143 test_gdb_complete "local_ident" \
144 [multi_line "p local_identical_one" \
145 "p local_identical_two" ]
147 # Two matches, from the global scope, but using fully qualified names:
148 test_gdb_complete "pck.local_ident" \
149 [multi_line "p pck.local_identical_one" \
150 "p pck.local_identical_two" ]
152 # Two matches, from the global scope, but using mangled fully qualified
154 test_gdb_complete "pck__local_ident" \
155 [multi_line "p pck__local_identical_one" \
156 "p pck__local_identical_two" ]
158 # Two matches, one from the global scope, the other from the local scope:
159 test_gdb_complete "external_ident" \
160 [multi_line "p external_identical_one" \
161 "p external_identical_two" ]
163 # Complete on the name of package.
164 test_gdb_complete "pck" \
165 [multi_line "(p pck\\.ad\[sb\])?" \
166 "(p pck\\.ad\[sb\])?" \
167 "p pck.external_identical_one" \
168 "p pck.inner.inside_variable" \
169 "p pck.local_identical_one" \
170 "p pck.local_identical_two" \
171 "p pck.my_global_variable" \
174 # Complete on the name of a package followed by a dot:
175 test_gdb_complete "pck." \
176 [multi_line "(p pck\\.ad\[sb\])?" \
177 "(p pck\\.ad\[sb\])?" \
178 "p pck.external_identical_one" \
179 "p pck.inner.inside_variable" \
180 "p pck.local_identical_one" \
181 "p pck.local_identical_two" \
182 "p pck.my_global_variable" \
185 # Complete a mangled symbol name, but using the '<...>' notation.
186 test_gdb_complete "<pck__my" \
187 "p <pck__my_global_variable>"