Fix C++ template function matching in cooked index
[binutils-gdb.git] / gdb / testsuite / gdb.base / readline.exp
blob4e613d669bfa66de497deec8ef626d6a3165cc36
1 # Copyright 2002-2024 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 was written by Tom Tromey <tromey@redhat.com>
18 # This file is part of the gdb testsuite.
21 # Tests for readline operations.
24 # This function is used to test operate-and-get-next.
25 # NAME is the name of the test.
26 # ARGS is a list of alternating commands and expected results.
27 proc operate_and_get_next {name args} {
28   global gdb_prompt
30   set my_gdb_prompt "($gdb_prompt| >)"
32   set reverse {}
33   foreach {item result} $args {
34     verbose "sending $item"
35     sleep 1
37     # We can't use gdb_test here because we might see a " >" prompt.
38     set status 0
39     send_gdb "$item\n"
40     gdb_expect {
41       -re "$item" {
42         # Ok
43       }
44       timeout {
45         set status 1
46       }
47     }
49     if {! $status} {
50       gdb_expect {
51         -re "$result" {
52           # Ok.
53         }
54         timeout {
55           set status 1
56         }
57       }
58     }
60     if {$status} {
61       fail "$name - send $item"
62       return 0
63     }
64     pass "$name - send $item"
66     set reverse [linsert $reverse 0 $item $result]
67   }
69   # Now use C-p to go back to the start.
70   foreach {item result} $reverse {
71     # Actually send C-p followed by C-l.  This lets us recognize the
72     # command when gdb prints it again.
73     send_gdb "\x10\x0c"
74     set status 0
75     gdb_expect {
76       -re "$item" {
77         # Ok
78       }
79       timeout {
80         set status 1
81       }
82     }
83     if {$status} {
84       fail "$name - C-p to $item"
85       return 0
86     }
87     pass "$name - C-p to $item"
88   }
90   # Now C-o through the list.  Don't send the command, since it is
91   # already there.  Strip off the first command from the list so we
92   # can see the next command inside the loop.
93   set count 0
94   foreach {item result} $args {
95     set status 0
97     # If this isn't the first item, make sure we see the command at
98     # the prompt.
99     if {$count > 0} {
100       gdb_expect {
101         -re ".*$item" {
102           # Ok
103         }
104         timeout {
105           set status 1
106         }
107       }
108     }
110     if {! $status} {
111       # For the last item, send a simple \n instead of C-o.
112       if {$count == [llength $args] - 2} {
113         send_gdb "\n"
114       } else {
115         # 15 is C-o.
116         send_gdb [format %c 15]
117       }
118       set status 0
119       gdb_expect {
120         -re "$result" {
121           # Ok
122         }
123         timeout {
124           set status 1
125         }
126       }
127     }
129     if {$status} {
130       fail "$name - C-o for $item"
131       return 0
132     }
133     pass "$name - C-o for $item"
135     set count [expr {$count + 2}]
136   }
138   # Match the prompt so the next test starts at the right place.
139   gdb_test "" ".*" "$name - final prompt"
141   return 1
144 save_vars { env(TERM) } {
145     # The arrow key test relies on the standard VT100 bindings, so
146     # make sure that an appropriate terminal is selected.  The same
147     # bug doesn't show up if we use ^P / ^N instead.
148     setenv TERM vt100
150     gdb_start
151     gdb_reinitialize_dir $srcdir/$subdir
153     if { ![readline_is_used] } {
154         unsupported "readline isn't used."
155         return -1
156     }
158     save_vars { timeout env(GDBHISTSIZE) env(GDBHISTFILE) } {
159         set timeout 30
161         # A simple test of operate-and-get-next.
162         operate_and_get_next "Simple operate-and-get-next" \
163             "p 1" ".* = 1" \
164             "p 2" ".* = 2" \
165             "p 3" ".* = 3"
167         # Test operate-and-get-next with a secondary prompt.
168         operate_and_get_next "operate-and-get-next with secondary prompt" \
169             "if 1 > 0" "" \
170             "p 5" "" \
171             "end" ".* = 5"
173         # Verify that arrow keys work in secondary prompts.  The control
174         # sequence is a hard-coded VT100 up arrow.
175         gdb_test "print 42" "\\\$\[0-9\]* = 42"
176         set msg "arrow keys with secondary prompt"
177         gdb_test_multiple "if 1 > 0\n\033\[A\033\[A\nend" $msg {
178             -re ".*\\\$\[0-9\]* = 42\r\n$gdb_prompt $" {
179                 pass $msg
180             }
181             -re ".*Undefined command:.*$gdb_prompt $" {
182                 fail $msg
183             }
184         }
186         # Use the up arrow to select a previous command.  Check that
187         # no unexpected output is added between the previously
188         # selected command, and the output of that command.
189         gdb_test "print 123" "\\\$\[0-9\]* = 123"
190         gdb_test_multiple "\033\[A" "use up arrow" {
191             -re -wrap "print 123\r\n\\\$\[0-9\]* = 123" {
192                 pass $gdb_test_name
193             }
194         }
196         # Now repeat the first test with a history file that fills the entire
197         # history list.
199         set env(GDBHISTFILE) "${srcdir}/${subdir}/gdb_history"
200         set env(GDBHISTSIZE) "10"
202         clean_restart
204         operate_and_get_next "Simple operate-and-get-next, two" \
205             "p 7" ".* = 7" \
206             "p 8" ".* = 8" \
207             "p 9" ".* = 9"
209         # Test sending a long command to GDB, a command that requires
210         # multiple terminal lines.  Long ago there was a readline bug
211         # that would cause GDB to crash in this situation.  We force
212         # the bug by setting up a narrow terminal width, and then
213         # sending a long command.
214         clean_restart
216         # The number of characters to send in the command.  We
217         # actually send a few more than this; this total is really the
218         # extra characters we add on after sending the command name.
219         set char_total 4500
220         set char_sent 0
222         # Adjust the terminal width.  Detect horizontal scrolling, which
223         # happens with stub-termcap.c.
224         set horizontal_scrolling 0
225         set cmd "set width 7"
226         gdb_test_multiple $cmd "" {
227             -re "^$cmd\r\n$gdb_prompt $" {
228                 pass $gdb_test_name
229             }
230             -re "^$cmd\r\n<b\\) $" {
231                 set horizontal_scrolling 1
232                 pass $gdb_test_name
233             }
234         }
236         if { !$horizontal_scrolling } {
237             # Send the command prefix, then lots of additional characters
238             # that create a really long command that wraps over multiple
239             # lines.
240             send_gdb "help X"
241             gdb_test_multiple "" "send long command to GDB" {
242                 -re "X" {
243                     incr char_sent
244                     if {$char_sent <= $char_total} {
245                         send_gdb "X"
246                         exp_continue
247                     }
248                 }
249                 -re "\[ \b\r\n\]" {
250                     exp_continue
251                 }
252             }
254             # Send the final newline so that GDB will process the command.
255             # Check GDB returns a suitable error.
256             send_gdb "\n"
257             gdb_test "" \
258                 "Undefined command: \"X+\"\\.  Try \"help\"\\." \
259                 "All the characters transferred"
260         }
261     }
264 # Test operate_and_get_next when selecting the last command.
265 with_test_prefix "operate_and_get_next last command" {
266     clean_restart
268     # Expected output from echo 1\n.
269     set re1 \
270         [multi_line \
271              "" \
272              "1"]
274     # Expected output from echo 2\n.
275     set re2 \
276         [multi_line \
277              "" \
278              "2"]
280     # Enter command into history.
281     gdb_test {echo 1\n} $re1 \
282         "enter command"
284     # Recall command from history (Ctrl-r, 022), and do operate-and-get-next
285     # (Ctrl-o, 017).  There shouldn't be a prefill, but if there is one,
286     # prevent a possible timeout using -no-prompt-anchor.
287     send_gdb "\022echo 1\017"
288     gdb_test -no-prompt-anchor "" $re1 \
289         "recall command"
291     # Regression test for PR32485: Since we recalled the last command, there
292     # shouldn't be a prefil, so check that here.
293     # If there is no prefil, we simple have:
294     #   (gdb) echo 2\n^M
295     #   2^M
296     #   (gdb)
297     # If there is a prefil, we have:
298     #   (gdb) echo 1\necho 2\n^M
299     #   1^M
300     #   echo 2^M
301     #   (gdb)
302     gdb_test {echo 2\n} $re2 \
303         "no prefill"