Fix test names starting with uppercase using gdb_test on a single line.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / completion.exp
index 09f04dfeaa286c4288dbc66fefc4a8176744a5c2..b72ccf56d993921f98c182e9a6c499067d176429 100644 (file)
@@ -1,5 +1,4 @@
-# Copyright 1998, 1999, 2002, 2003, 2004, 2007, 2008
-# Free Software Foundation, Inc.
+# Copyright 1998-2016 Free Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -14,9 +13,6 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-# Please email any bugs, comments, and/or additions to this file to:
-# bug-gdb@prep.ai.mit.edu
-
 # This file was written by Elena Zannoni (ezannoni@cygnus.com)
 
 # This file is part of the gdb testsuite.
 #
 
 
-if $tracelevel then {
-        strace $tracelevel
-        }
-
-
-global usestubs
 
 #
 # test running programs
 #
-set prms_id 0
-set bug_id 0
 
-set testfile "break"
-set srcfile ${testfile}.c
-set srcfile1 ${testfile}1.c
-set binfile ${objdir}/${subdir}/${testfile}
+standard_testfile break.c break1.c
 
-if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}0.o" object {debug nowarnings}] != "" } {
-     untested completion.exp
-     return -1
+if [get_compiler_info] {
+    return -1
 }
 
-if  { [gdb_compile "${srcdir}/${subdir}/${srcfile1}" "${binfile}1.o" object {debug nowarnings}] != "" } {
-     untested completion.exp
-     return -1
+if {[prepare_for_testing $testfile.exp $testfile \
+        [list $srcfile $srcfile2] {debug nowarnings}]} {
+    untested $testfile.exp
+    return -1
 }
 
-if  { [gdb_compile "${binfile}0.o ${binfile}1.o" "${binfile}" executable {debug nowarnings}] != "" } {
-     untested completion.exp
-     return -1
+if ![runto_main] then {
+        perror "tests suppressed"
+}
+
+set timeout 30
+gdb_test_no_output "set max-completions unlimited"
+
+gdb_test_no_output "complete print values\[0\].x." \
+    "field completion with invalid field"
+
+# If there is a non-deprecated completion, it should be returned.
+gdb_test "complete sav" "save" "test non-deprecated completion"
+# If there is only a deprecated completion, then it should be returned.
+gdb_test "complete save-t" "save-tracepoints" "test deprecated completion"
+
+
+#
+# Tag name completion.
+#
+
+gdb_test "complete ptype struct some_" "ptype struct some_struct"
+gdb_test "complete ptype enum some_" "ptype enum some_enum"
+gdb_test "complete ptype union some_" "ptype union some_union"
+
+
+gdb_test "complete set gnutarget aut" "set gnutarget auto"
+
+
+gdb_test "complete set cp-abi aut" "set cp-abi auto"
+
+# Test that completion of commands 'target FOO' works well.
+set targets [list "core" "tfile" "exec"]
+
+# Test that completion of command 'target ctf' if GDB supports ctf
+# target.
+gdb_test_multiple "target ctf" "" {
+    -re "Undefined target command: \"ctf\"\.  Try \"help target\"\.\r\n$gdb_prompt $" {
+    }
+    -re "No CTF directory specified.*\r\n$gdb_prompt $" {
+       lappend targets "ctf"
+    }
 }
 
-if [get_compiler_info ${binfile}] {
-    return -1;
+# Test artifacts are put in different locations depending on test
+# is a parallel run or not.  Firstly check file exists, and then
+# do the test on file completion.
+
+foreach dir1 [ list "./gdb.base" "./outputs/gdb.base/completion" ] {
+    if { [remote_file host exists ${dir1}/completion]
+        && [remote_file host exists ${dir1}/completion0.o]
+        && [remote_file host exists ${dir1}/completion1.o] } {
+       foreach target_name ${targets} {
+           gdb_test "complete target ${target_name} ${dir1}/completion" \
+               "target ${target_name} ${dir1}/completion.*${dir1}/completion0\\.o.*${dir1}/completion1\\.o.*" \
+               "complete target ${target_name}"
+       }
+       break
+    }
 }
 
-gdb_exit
+#
+# "set foo unlimited" completion.
+#
 
-# Don't let a .inputrc file or an existing setting of INPUTRC mess up
-# the test results.  Even if /dev/null doesn't exist on the particular
-# platform, the readline library will use the default setting just by
-# failing to open the file.  OTOH, opening /dev/null successfully will
-# also result in the default settings being used since nothing will be
-# read from this file.
-global env
-if [info exists env(INPUTRC)] {
-    set old_inputrc $env(INPUTRC)
+# A var_uinteger command.
+gdb_test "complete set height " "set height unlimited"
+gdb_test "complete set height u" "set height unlimited"
+
+# A var_integer command.
+gdb_test "complete set listsize " "set listsize unlimited"
+gdb_test "complete set listsize unl" "set listsize unlimited"
+
+# A var_zuinteger_unlimited command.
+gdb_test "complete set trace-buffer-size " "set trace-buffer-size unlimited"
+gdb_test "complete set trace-buffer-size unl" "set trace-buffer-size unlimited"
+
+# Test "info registers" completion: First determine this
+# architecture's registers and reggroups...
+
+set regs_output [capture_command_output "mt print registers" \
+                    ".*Name.*Nr.*Rel.*Offset.*Size.*Type.\[^\n\]*\n"]
+append regs_output "\n"
+append regs_output [capture_command_output "mt print reggroups" \
+                       ".*Group.*Type\[^\n]*\n"]
+append regs_output "\n"
+append regs_output [capture_command_output "mt print user-registers" \
+                    ".*Name.*Nr\[^\n]*\n"]
+set all_regs {}
+foreach {- reg} [regexp -all -inline -line {^\s+(\w+)} $regs_output] {
+    lappend all_regs $reg
 }
-set env(INPUTRC) "/dev/null"
 
-gdb_start
-gdb_reinitialize_dir $srcdir/$subdir
-gdb_load ${binfile}
+set all_regs [join [lsort -unique $all_regs]]
 
-if ![runto_main] then {
-        perror "tests suppressed"
+# ... and then compare them to the completion of "info registers".
+
+set regs_output [capture_command_output "complete info registers " ""]
+set completed_regs {}
+foreach {-> reg} [regexp -all -inline -line {^info registers (\w+\S*)} $regs_output] {
+    lappend completed_regs $reg
 }
+set completed_regs [join [lsort $completed_regs]]
+gdb_assert {{$all_regs eq $completed_regs}} "complete 'info registers '"
 
-set oldtimeout1 $timeout
-set timeout 30
+# Tests below are about tab-completion, which doesn't work if readline
+# library isn't used.  Check it first.
 
+if { ![readline_is_used] } {
+    return -1
+}
 
+set test "complete 'hfgfh'"
 send_gdb "hfgfh\t"
-sleep 1
-gdb_expect  {
-        -re "^hfgfh\\\x07$"\
-            { send_gdb "\n"
-              gdb_expect {
-                      -re "Undefined command: \"hfgfh\"\\.  Try \"help\"\\..*$gdb_prompt $"\
-                                        { pass "complete 'hfgfh'"}
-                      -re ".*$gdb_prompt $" { fail "complete 'hfgfh'"}
-                      timeout           {fail "(timeout) complete 'hfgfh'"}
-                     }
-            }
-        -re ".*$gdb_prompt $"       { fail "complete 'hfgfh'" }
-        timeout         { fail "(timeout) complete 'hfgfh'" }
-        }
+gdb_test_multiple "" "$test" {
+    -re "^hfgfh\\\x07$" {
+       send_gdb "\n"
+       gdb_test_multiple "" $test {
+           -re "Undefined command: \"hfgfh\"\\.  Try \"help\"\\..*$gdb_prompt $" {
+               pass "$test"
+           }
+       }
+    }
+}
 
 #exp_internal 0
 
+set test "complete 'show output'"
 send_gdb "show output\t"
-sleep 1
-gdb_expect  {
-        -re "^show output-radix $"\
-            { send_gdb "\n"
-              gdb_expect {
-                      -re "Default output radix for printing of values is 10\\..*$gdb_prompt $"\
-                                        { pass "complete 'show output'"}
-                      -re ".*$gdb_prompt $" { fail "complete 'show output'"}
-                      timeout           {fail "(timeout) complete 'show output'"}
-                     }
-            }
-        -re "^show output$"\
-            { send_gdb "\n"
-               gdb_expect {
-                      -re "Default output radix for printing of values is 10\\..*$gdb_prompt $"\
-                                        { fail "complete 'show output'"}
-                      -re ".*$gdb_prompt $" { fail "complete 'show output'"}
-                      timeout           { fail "(timeout) complete 'show output'"}
-                     }
-
-             }
-
-        -re ".*$gdb_prompt $"       { fail "complete 'show output'" }
-        timeout         { fail "(timeout) complete 'show output'" }
-        }
-
+gdb_test_multiple "" "$test" {
+    -re "^show output-radix $" {
+       send_gdb "\n"
+       gdb_test_multiple "" "$test" {
+           -re "Default output radix for printing of values is 10\\..*$gdb_prompt $" {
+               pass "$test"
+           }
+       }
+    }
+}
 
+set test "complete 'show output-'"
 send_gdb "show output-\t"
-sleep 1
-gdb_expect  {
-        -re "^show output-radix $"\
-            { send_gdb "\n"
-              gdb_expect {
-                      -re "Default output radix for printing of values is 10\\..*$gdb_prompt $"\
-                                        { pass "complete 'show output-'"}
-                      -re ".*$gdb_prompt $" { fail "complete 'show output-'"}
-                      timeout           {fail "(timeout) complete 'show output-'"}
-                     }
-            }
-        -re "^show output-$"\
-            { send_gdb "\n"
-               gdb_expect {
-                      -re "Default output radix for printing of values is 10\\..*$gdb_prompt $"\
-                                        { fail "complete 'show output-'"}
-                      -re ".*$gdb_prompt $" { fail "complete 'show output-'"}
-                      timeout           { fail "(timeout) complete 'show output-'"}
-                     }
-
-             }
-
-        -re ".*$gdb_prompt $"       { fail "complete 'show output-'" }
-        timeout         { fail "(timeout) complete 'show output-'" }
+gdb_test_multiple "" "$test" {
+    -re "^show output-radix $" {
+       send_gdb "\n"
+       gdb_test_multiple "" "$test" {
+           -re "Default output radix for printing of values is 10\\..*$gdb_prompt $" {
+               pass "$test"
+           }
         }
+    }
+}
 
+set test "complete 'p'"
 send_gdb "p\t"
-sleep 1
-gdb_expect  {
-        -re "^p\\\x07$"\
-            { send_gdb "\n"
-             sleep 1
-              gdb_expect {
-                      -re "The history is empty\\..*$gdb_prompt $"\
-                                        { pass "complete 'p'"}
-                      -re ".*$gdb_prompt $" { fail "complete 'p'"}
-                      timeout           {fail "(timeout) complete 'p' 2"}
-                     }
-            }
-        -re ".*$gdb_prompt $"       { fail "complete 'p'" }
-        timeout         { fail "(timeout) complete 'p' 1" }
+gdb_test_multiple "" "$test" {
+    -re "^p\\\x07$" {
+       send_gdb "\n"
+       gdb_test_multiple "" "$test" {
+           -re "The history is empty\\..*$gdb_prompt $" {
+               pass "$test"
+           }
         }
+    }
+}
 
+set test "complete 'p '"
 send_gdb "p \t"
-sleep 3
-gdb_expect  {
-        -re "^p \\\x07$"\
-            { send_gdb "\n"
-             sleep 1
-              gdb_expect {
-                      -re "The history is empty\\..*$gdb_prompt $"\
-                                        { pass "complete 'p '"}
-                      -re ".*$gdb_prompt $" { fail "complete 'p '"}
-                      timeout           {fail "(timeout) complete 'p ' 1"}
-                     }
-            }
-        -re ".*$gdb_prompt $"       { fail "complete 'p '" }
-        timeout         { fail "(timeout) complete 'p ' 2" }
-        }
-
+gdb_test_multiple "" "$test" {
+    -re "^p \\\x07$" {
+       send_gdb "\n"
+       gdb_test_multiple "" "$test" {
+           -re "The history is empty\\..*$gdb_prompt $" {
+               pass "$test"
+           }
+       }
+    }
+}
 
+set test "complete 'info t foo'"
 send_gdb "info t foo\t"
-sleep 1
-gdb_expect  {
-        -re "^info t foo\\\x07$"\
-            { send_gdb "\n"
-              gdb_expect {
-                      -re "Ambiguous info command \"t foo\": target, terminal, threads, tp, tracepoints, types\\..*$gdb_prompt $"\
-                                        { pass "complete 'info t foo'"}
-                      -re ".*$gdb_prompt $" { fail "complete 'info t foo'"}
-                      timeout           {fail "(timeout) complete 'info t foo'"}
-                     }
-            }
-        -re ".*$gdb_prompt $"       { fail "complete 'info t foo'" }
-        timeout         { fail "(timeout) complete 'info t foo'" }
-        }
+gdb_test_multiple "" "$test" {
+    -re "^info t foo\\\x07$" {
+       send_gdb "\n"
+       gdb_test_multiple "" "$test" {
+           -re "Ambiguous info command \"t foo\": target, tasks, terminal, threads, tp, tracepoints, tvariables, (type-printers, )?types\\..*$gdb_prompt $" {
+               pass "$test"
+           }
+       }
+    }
+}
 
+set test "complete 'info t'"
 send_gdb "info t\t"
-sleep 1
-gdb_expect  {
-        -re "^info t\\\x07$"\
-            { send_gdb "\n"
-              gdb_expect {
-                      -re "Ambiguous info command \"t\": target, terminal, threads, tp, tracepoints, types\\..
-*$gdb_prompt $"\
-                                        { pass "complete 'info t'"}
-                      -re ".*$gdb_prompt $" { fail "complete 'info t'"}
-                      timeout           {fail "(timeout) complete 'info t'"}
-                     }
-            }
-        -re ".*$gdb_prompt $"       { fail "complete 'info t'" }
-        timeout         { fail "(timeout) complete 'info t'" }
-        }
-
+gdb_test_multiple "" "$test" {
+    -re "^info t\\\x07$" {
+       send_gdb "\n"
+       gdb_test_multiple "" "$test" {
+           -re "Ambiguous info command \"t\": target, tasks, terminal, threads, tp, tracepoints, tvariables, (type-printers, )?types\\..*$gdb_prompt $" {
+               pass "$test"
+           }
+       }
+    }
+}
 
+set test "complete 'info t '"
 send_gdb "info t \t"
-sleep 1
-gdb_expect  {
-        -re "^info t \\\x07$"\
-            { send_gdb "\n"
-              gdb_expect {
-                      -re "Ambiguous info command \"t \": target, terminal, threads, tp, tracepoints, types\\..
-*$gdb_prompt $"\
-                                        { pass "complete 'info t '"}
-                      -re ".*$gdb_prompt $" { fail "complete 'info t '"}
-                      timeout           {fail "(timeout) complete 'info t '"}
-                     }
-            }
-        -re ".*$gdb_prompt $"       { fail "complete 'info t '" }
-        timeout         { fail "(timeout) complete 'info t '" }
-        }
-
+gdb_test_multiple "" "$test" {
+    -re "^info t \\\x07$" {
+       send_gdb "\n"
+       gdb_test_multiple "" "$test" {
+           -re "Ambiguous info command \"t \": target, tasks, terminal, threads, tp, tracepoints, tvariables, (type-printers, )?types\\..*$gdb_prompt $" {
+               pass "$test"
+           }
+       }
+    }
+}
 
+set test "complete 'info asdfgh'"
 send_gdb "info asdfgh\t"
-sleep 1
-gdb_expect  {
-        -re "^info asdfgh\\\x07$"\
-            { send_gdb "\n"
-              gdb_expect {
-                      -re "Undefined info command: \"asdfgh\".  Try \"help info\"\\..
-*$gdb_prompt $"\
-                                        { pass "complete 'info asdfgh'"}
-                      -re ".*$gdb_prompt $" { fail "complete 'info asdfgh'"}
-                      timeout           {fail "(timeout) complete 'info asdfgh'"}
-                     }
-            }
-        -re ".*$gdb_prompt $"       { fail "complete 'info asdfgh'" }
-        timeout         { fail "(timeout) complete 'info asdfgh'" }
-        }
-
+gdb_test_multiple "" "$test" {
+    -re "^info asdfgh\\\x07$" {
+       send_gdb "\n"
+       gdb_test_multiple "" "$test" {
+           -re "Undefined info command: \"asdfgh\".  Try \"help info\"\\..*$gdb_prompt $" {
+               pass "$test"
+           }
+       }
+    }
+}
 
+set test "complete 'info asdfgh '"
 send_gdb "info asdfgh \t"
-sleep 1
-gdb_expect  {
-        -re "^info asdfgh \\\x07$"\
-            { send_gdb "\n"
-              gdb_expect {
-                      -re "Undefined info command: \"asdfgh \".  Try \"help info\"\\..
-*$gdb_prompt $"\
-                                        { pass "complete 'info asdfgh '"}
-                      -re ".*$gdb_prompt $" { fail "complete 'info asdfgh '"}
-                      timeout           {fail "(timeout) complete 'info asdfgh '"}
-                     }
-            }
-        -re ".*$gdb_prompt $"       { fail "complete 'info asdfgh '" }
-        timeout         { fail "(timeout) complete 'info asdfgh '" }
-        }
+gdb_test_multiple "" "$test" {
+    -re "^info asdfgh \\\x07$" {
+       send_gdb "\n"
+       gdb_test_multiple "" "$test" {
+           -re "Undefined info command: \"asdfgh \".  Try \"help info\"\\..*$gdb_prompt $" {
+               pass "$test"
+           }
+       }
+    }
+}
 
+set test "complete 'info'"
 send_gdb "info\t"
-sleep 1
-gdb_expect  {
-        -re "^info $"\
-            { send_gdb "\n"
-              gdb_expect {
-                      -re "\"info\" must be followed by the name of an info command\\.\r\nList of info subcommands.*$gdb_prompt $"\
-                                        { pass "complete 'info'"}
-                      -re ".*$gdb_prompt $" { fail "complete 'info'"}
-                      timeout           {fail "(timeout) complete 'info'"}
-                     }
-            }
-        -re ".*$gdb_prompt $"       { fail "complete 'info'" }
-        timeout         { fail "(timeout) complete 'info'" }
-        }
+gdb_test_multiple "" "$test" {
+    -re "^info $" {
+       send_gdb "\n"
+       gdb_test_multiple "" "$test" {
+           -re "\"info\" must be followed by the name of an info command\\.\r\nList of info subcommands.*$gdb_prompt $" {
+               pass "$test"
+           }
+       }
+    }
+}
 
+set test "complete 'info '"
 send_gdb "info \t"
-sleep 1
-gdb_expect  {
-        -re "^info \\\x07$"\
-            { send_gdb "\n"
-              gdb_expect {
-                      -re "\"info\" must be followed by the name of an info command\\.\r\nList of info subcommands:\r\n\r\n.*$gdb_prompt $"\
-                                        { pass "complete 'info '"}
-                      -re ".*$gdb_prompt $" { fail "complete 'info '"}
-                      timeout           {fail "(timeout) complete 'info '"}
-                     }
-            }
-        -re ".*$gdb_prompt $"       { fail "complete 'info '" }
-        timeout         { fail "(timeout) complete 'info '" }
-        }
-
+gdb_test_multiple "" "$test" {
+    -re "^info \\\x07$" {
+       send_gdb "\n"
+       gdb_test_multiple "" "$test" {
+           -re "\"info\" must be followed by the name of an info command\\.\r\nList of info subcommands:\r\n\r\n.*$gdb_prompt $" {
+               pass "$test"
+           }
+       }
+    }
+}
 
+set test "complete (2) 'info '"
 send_gdb "info \t"
-sleep 1
-gdb_expect  {
-        -re "^info \\\x07$"\
-            { send_gdb "\t"
-              gdb_expect {
-                      -re "address.*types.*$gdb_prompt info $"\
-                          { send_gdb "\n"
-                            gdb_expect {
-                                     -re "\"info\".*unambiguous\\..*$gdb_prompt $"\
-                                        { pass "complete (2) 'info '"}
-                                     -re ".*$gdb_prompt $" { fail "complete (2) 'info '"}
-                                     timeout           {fail "(timeout) complete (2) 'info '"}
-                                    }
-                           }
-                      -re ".*$gdb_prompt $" { fail "complete (2) 'info '"}
-                      timeout           {fail "(timeout) complete (2) 'info '"}
-                     }
-            }
-        -re ".*$gdb_prompt $"       { fail "complete (2) 'info '" }
-        timeout         { fail "(timeout) complete (2) 'info '" }
-        }
+gdb_test_multiple "" "$test" {
+    -re "^info \\\x07$" {
+       send_gdb "\t"
+       gdb_test_multiple "" "$test" {
+           -re "address.*types.*$gdb_prompt " {
+               send_gdb "\n"
+               gdb_test_multiple "" "$test" {
+                   -re "\"info\".*unambiguous\\..*$gdb_prompt $" {
+                       pass "$test"
+                   }
+               }
+           }
+       }
+    }
+}
 
+set test "complete 'help info wat'"
+send_gdb "help info wat\t"
+gdb_test_multiple "" "$test" {
+    -re "^help info watchpoints $" {
+       send_gdb "\n"
+       gdb_test_multiple "" "$test" {
+           -re "Status of specified watchpoints.*\r\n.*$gdb_prompt $" {
+               pass "$test"
+           }
+       }
+    }
+    -re "^help info wat\\\x07$" {
+       fail "$test"
+    }
+}
 
+set test "complete 'p \"break1'"
 send_gdb "p \"break1\t"
-sleep 1
-gdb_expect  {
-        -re "^p \"break1\\\x07$"\
-            { send_gdb "\n"
-              gdb_expect {
-                      -re ".*$gdb_prompt $" { fail "complete 'p \"break1'"}
-                      timeout           {fail "(timeout) complete 'p \"break1'"}
-                     }
-            }
-       -re "^p \"break1\\.c\"$"\
-           {   send_gdb "\n"
-               gdb_expect {
-                   -re ".*$gdb_prompt $" { pass "complete 'p \"break1'"}
-                   timeout           {fail "(timeout) complete 'p \"break1'"}
-               }
-           }
-       -re "^p \"break1.*$"
-           {   send_gdb "\n"
-               gdb_expect {
-                   -re ".*$gdb_prompt $" { fail "complete 'p \"break1'"}
-                   timeout           {fail "(timeout) complete 'p \"break1'"}
-               }
+gdb_test_multiple "" "$test" {
+    -re "^p \"break1\\\x07$" {
+       send_gdb "\n"
+       gdb_test_multiple "" "$test" {}
+    }
+    -re "^p \"break1\\.c\"$" {
+       send_gdb "\n"
+       gdb_test_multiple "" "$test" {
+           -re "$gdb_prompt $" {
+               pass "$test"
            }
-        -re ".*$gdb_prompt $"       { fail "complete 'p \"break1'" }
-        timeout         { fail "(timeout) complete 'p \"break1'" }
-        }
+       }
+    }
+}
 
 setup_xfail "*-*-*"
+set test "complete 'p \"break1.'"
 send_gdb "p \"break1.\t"
-sleep 1
-gdb_expect  {
-        -re "^p \"break1\\.\\\x07$"\
-            { send_gdb "\n"
-              gdb_expect {
-                      -re ".*$gdb_prompt $" { fail "complete 'p \"break1.'"}
-                      timeout           {fail "(timeout) complete 'p \"break1.'"}
-                     }
-            }
-       -re "^p \"break1\\.c\"$"\
-           {   send_gdb "\n"
-               gdb_expect {
-                   -re ".*$gdb_prompt $" { pass "complete 'p \"break1.'"}
-                   timeout           {fail "(timeout) complete 'p \"break1.'"}
-               }
-           }
-       -re "^p \"break1\\..*$"
-           {   send_gdb "\n"
-               gdb_expect {
-                   -re ".*$gdb_prompt $" { fail "complete 'p \"break1.'"}
-                   timeout           {fail "(timeout) complete 'p \"break1.'"}
-               }
+gdb_test_multiple "" "$test" {
+    -re "^p \"break1\\.\\\x07$" {
+       send_gdb "\n"
+       gdb_test_multiple "" "$test" {}
+    }
+    -re "^p \"break1\\.c\"$" {
+       send_gdb "\n"
+       gdb_test_multiple "" "$test" {
+           -re "$gdb_prompt $" {
+               pass "$test"
            }
-        -re ".*$gdb_prompt $"       { fail "complete 'p \"break1.'" }
-        timeout         { fail "(timeout) complete 'p \"break1.'" }
-        }
+       }
+    }
+    -re "^p \"break1\\..*$" {
+       send_gdb "\n"
+       gdb_test_multiple "" "$test" {}
+    }
+}
 
+set test "complete 'p 'arg'"
 send_gdb "p 'arg\t"
-sleep 1
-gdb_expect  {
-        -re "^p 'arg\\\x07$"\
-            { send_gdb "\n"
-              gdb_expect {
-                      -re "(Invalid character constant\\.|Unmatched single quote\\.).*$gdb_prompt $"\
-                                        { pass "complete 'p \'arg'"}
-                      -re ".*$gdb_prompt $" { fail "complete 'p \'arg'"}
-                      timeout           {fail "(timeout) complete 'p \'arg'"}
-                     }
-            }
-        -re ".*$gdb_prompt $"       { fail "complete 'p \'arg'" }
-        timeout         { fail "(timeout) complete 'p \'arg'" }
-        }
+gdb_test_multiple "" "$test" {
+    -re "^p 'arg\\\x07$" {
+       send_gdb "\n"
+       gdb_test_multiple "" "$test" {
+           -re "(Invalid character constant\\.|Unmatched single quote\\.).*$gdb_prompt $" {
+               pass "$test"
+           }
+       }
+    }
+}
 
+set test "complete (2) 'p 'arg'"
 send_gdb "p 'arg\t"
-sleep 1
-gdb_expect {
+gdb_test_multiple "" "$test" {
     -re "^p 'arg\\\x07$" {
        send_gdb "\t"
-       gdb_expect {
-           -re ".*argv.*$gdb_prompt p 'arg$" {
+       gdb_test_multiple "" "$test" {
+           -re "argv.*$gdb_prompt " {
                send_gdb "\n"
-               gdb_expect {
+               gdb_test_multiple "" "$test" {
                    -re "(Invalid character constant\\.|Unmatched single quote\\.).*$gdb_prompt $" {
-                       pass "complete (2) 'p \'arg'"
+                       pass "$test"
                    }
-                   -re ".*$gdb_prompt $" { fail "complete (2) 'p \'arg'" }
-                   timeout { fail "(timeout) complete (2) 'p \'arg'" }
                }
            }
            -re "(There are $decimal possibilities\\.  Do you really\r\nwish to see them all.|Display all $decimal possibilities.) \\(y or n\\)$" {
                send_gdb "n"
-               gdb_expect {
+               gdb_test_multiple "" "$test" {
                    -re "\\(gdb\\) p 'arg$" {
                        send_gdb "\n"
-                       gdb_expect {
+                       gdb_test_multiple "" "$test" {
                            -re "(Invalid character constant\\.|Unmatched single quote\\.).*$gdb_prompt $" {
-                               pass "complete (2) 'p \'arg'"
+                               pass "$test"
                            }
-                           -re ".*$gdb_prompt $" { 
-                               fail "complete (2) 'p \'arg'"
-                           }
-                           timeout { fail "(timeout) complete (2) 'p \'arg'" }
                        }
                    }
-                   -re ".*$gdb_prompt $" { fail "complete (2) 'p \'arg'" }
-                   timeout { fail "(timeout) complete (2) 'p \'arg'" }
                }
            }
-           -re ".*$gdb_prompt $" { fail "complete (2) 'p \'arg'" }
-           timeout { fail "(timeout) complete (2) 'p \'arg'" }
        }
     }
-    -re ".*$gdb_prompt $" { fail "complete (2) 'p \'arg'" }
-    timeout { fail "(timeout) complete (2) 'p \'arg'" }
+}
+
+set test "complete 'handle signal'"
+send_gdb "handle sigq\t"
+gdb_test_multiple "" "$test" {
+    -re "^handle sigq\b\b\b\bSIGQUIT $" {
+       send_gdb "\n"
+       gdb_test_multiple "" "$test" {
+           -re "SIGQUIT.*Quit.*$gdb_prompt $" {
+               pass "$test"
+           }
+       }
+    }
+}
+
+set test "complete 'handle keyword'"
+send_gdb "handle nos\t"
+gdb_test_multiple "" "$test" {
+    -re "^handle nostop $" {
+       send_gdb "\n"
+       gdb_test_multiple "" "$test" {
+           -re "$gdb_prompt $" {
+               pass "$test"
+           }
+       }
+    }
+}
+
+set test "complete help aliases"
+send_gdb "help user-define\t"
+gdb_test_multiple "" "$test" {
+    -re "^help user-defined $" {
+       send_gdb "\n"
+       gdb_test_multiple "" "$test" {
+           -re "$gdb_prompt $" {
+               pass "$test"
+           }
+       }
+    }
 }
 
 
@@ -502,141 +509,144 @@ gdb_expect {
 #
 # So, I'm hoping that there is no system with a static library variable named
 # `no_var_by_this_name'.
+
+set test "complete 'p no_var_named_this-arg'"
 send_gdb "p no_var_named_this-arg\t"
-sleep 1
-gdb_expect {
+gdb_test_multiple "" "$test" {
     -re "^p no_var_named_this-arg\\\x07$" {
         send_gdb "\n"
-        gdb_expect {
+       gdb_test_multiple "" "$test" {
             -re "No symbol \"no_var_named_this\" in current context\\..*$gdb_prompt $" {
-                pass "complete 'p no_var_named_this-arg'"
-            }
-            -re ".*$gdb_prompt $" {
-                fail "complete 'p no_var_named_this-arg'"
-            }
-            timeout {
-                fail "(timeout) complete 'p no_var_named_this-arg'"
+               pass "$test"
             }
         }
     }
-    -re ".*$gdb_prompt $" {
-        fail "complete 'p no_var_named_this-arg'"
-    }
-    timeout {
-        fail "(timeout) complete 'p no_var_named_this-arg'"
-    }
 }
 
+set test "complete (2) 'p no_var_named_this-arg'"
 send_gdb "p no_var_named_this-arg\t"
-sleep 1
-gdb_expect {
+gdb_test_multiple "" "$test" {
     -re "^p no_var_named_this-arg\\\x07$" {
        send_gdb "\t"
-       gdb_expect {
-           -re ".*argv.*$gdb_prompt p no_var_named_this-arg$" {
+       gdb_test_multiple "" "$test" {
+           -re "argv.*$gdb_prompt " {
                send_gdb "\n"
-               gdb_expect {
+               gdb_test_multiple "" "$test" {
                    -re "No symbol \"no_var_named_this\" in current context\\..*$gdb_prompt $" {
-                       pass "complete (2) 'p no_var_named_this-arg'"
+                       pass "$test"
                    }
-                   -re ".*$gdb_prompt $" {
-                        fail "complete (2) 'p no_var_named_this-arg'"
-                    }
-                   timeout {
-                        fail "(timeout) complete (2) 'p no_var_named_this-arg'"
-                    }
                }
            }
            -re "(There are $decimal possibilities\\.  Do you really\r\nwish to see them all.|Display all $decimal possibilities.) \\(y or n\\)$" {
-               send_gdb "n"
+               send_gdb "n\n"
+
+               # Eat the prompt
                gdb_expect {
-                   -re "\\(gdb\\) p no_var_named_this-arg$" {
-                       send_gdb "\n"
-                       gdb_expect {
-                           -re "No symbol \"no_var_named_this\" in current context\\..*$gdb_prompt $" {
-                               pass "complete (2) 'p no_var_named_this-arg'"
-                           }
-                           -re ".*$gdb_prompt $" {
-                               fail "complete (2) 'p no_var_named_this-arg'"
-                           }
-                           timeout {
-                                fail "(timeout) complete (2) 'p no_var_named_this-arg'"
-                            }
-                       }
+                   -re "$gdb_prompt " {
+                       pass "$test (eat prompt)"
                    }
-                   -re ".*$gdb_prompt $" {
-                        fail "complete (2) 'p no_var_named_this-arg'"
-                    }
                    timeout {
-                        fail "(timeout) complete (2) 'p no_var_named_this-arg'"
-                    }
+                       fail "(timeout) $test (eat prompt)"
+                   }
+               }
+
+               gdb_test_multiple "" "$test" {
+                   -re "No symbol \"no_var_named_this\" in current context\\..*$gdb_prompt $" {
+                       pass "$test"
+                   }
                }
            }
-           -re ".*$gdb_prompt $" {
-                fail "complete (2) 'p no_var_named_this-arg'"
-            }
-           timeout { fail "(timeout) complete (2) 'p no_var_named_this-arg'" }
         }
     }
-    -re ".*$gdb_prompt $" { fail "complete (2) 'p no_var_named_this-arg'" }
-    timeout { fail "(timeout) complete (2) 'p no_var_named_this-arg'" }
 }
 
+set test "complete (2) 'p no_var_named_this-'"
 send_gdb "p no_var_named_this-\t"
-sleep 1
-gdb_expect  {
+gdb_test_multiple "" "$test" {
     -re "^p no_var_named_this-\\\x07$" {
        send_gdb "\t"
-       gdb_expect {
+       gdb_test_multiple "" "$test" {
            -re "(There are $decimal possibilities\\.  Do you really\r\nwish to see them all.|Display all $decimal possibilities.) \\(y or n\\)$" {
-               send_gdb "n"
+               send_gdb "n\n"
+
+               # Eat the prompt
                gdb_expect {
-                   -re "\\(gdb\\) p no_var_named_this-$" {
-                       send_gdb "\n"
-                       gdb_expect {
-                           -re "No symbol \"no_var_named_this\" in current context\\..*$gdb_prompt $" {
-                               pass "complete (2) 'p no_var_named_this-'"
-                           }
-                           -re ".*$gdb_prompt $" {
-                               fail "complete (2) 'p no_var_named_this-'"
-                           }
-                           timeout {
-                                fail "(timeout) complete (2) 'p no_var_named_this-'"
-                            }
-                       }
+                   -re "$gdb_prompt " {
+                       pass "$test (eat prompt)"
                    }
-                   -re ".*$gdb_prompt $" {
-                        fail "complete (2) 'p no_var_named_this-'"
-                    }
                    timeout {
-                        fail "(timeout) complete (2) 'p no_var_named_this-'"
-                    }
+                       fail "(timeout) $test (eat prompt)"
+                   }
+               }
+
+               gdb_test_multiple "" "$test" {
+                   -re "No symbol \"no_var_named_this\" in current context\\..*$gdb_prompt $" {
+                       pass "$test"
+                   }
                }
            }
-           -re ".*argv.*$gdb_prompt p no_var_named_this-$" {
+           -re "argv.*$gdb_prompt $" {
                send_gdb "\n"
-               gdb_expect {
+               gdb_test_multiple "" "$test" {
                    -re "No symbol \"no_var_named_this\" in current context\\..*$gdb_prompt $" {
-                       pass "complete (2) 'p no_var_named_this-'"
-                   }
-                   -re ".*$gdb_prompt $" {
-                       fail "complete (2) 'p no_var_named_this-'"
-                   }
-                   timeout {
-                       fail "(timeout) complete (2) 'p no_var_named_this-'"
+                       pass "$test"
                    }
                }
            }
-           -re ".*$gdb_prompt $" {
-                fail "complete (2) 'p no_var_named_this-'"
-            }
-           timeout { fail "(timeout) complete (2) 'p no_var_named_this-'" }
        }
     }
-    -re ".*$gdb_prompt $" { fail "complete (2) 'p no_var_named_this-'" }
-    timeout { fail "(timeout) complete (2) 'p no_var_named_this-'" }
 }
 
+set test "complete 'p values\[0\].a'"
+send_gdb "p values\[0\].a\t"
+gdb_test_multiple "" "$test" {
+    -re "^p values.0..a_field $" {
+       send_gdb "\n"
+       gdb_test_multiple "" "$test" {
+           -re " = 0.*$gdb_prompt $" {
+               pass "$test"
+           }
+       }
+    }
+}
+
+set test "complete 'p values\[0\] . a'"
+send_gdb "p values\[0\] . a\t"
+gdb_test_multiple "" "$test" {
+    -re "^p values.0. . a_field $" {
+       send_gdb "\n"
+       gdb_test_multiple "" "$test" {
+           -re " = 0.*$gdb_prompt $" {
+               pass "$test"
+           }
+       }
+    }
+}
+
+set test "complete 'p &values\[0\] -> a'"
+send_gdb "p &values\[0\] -> a\t"
+gdb_test_multiple "" "$test" {
+    -re "^p &values.0. -> a_field $" {
+       send_gdb "\n"
+       gdb_test_multiple "" "$test" {
+           -re " = .*0x\[0-9a-fA-F\]*.*$gdb_prompt $" {
+               pass "$test"
+           }
+       }
+    }
+}
+
+gdb_test "complete p &values\[0\]->z" \
+    "p &values.0.->z_field" \
+    "completion of field in anonymous union"
+
+gdb_test "complete ptype &values\[0\]->z" \
+    "ptype &values.0.->z_field" \
+    "ptype completion of field in anonymous union"
+
+gdb_test "complete whatis &values\[0\]->z" \
+    "whatis &values.0.->z_field" \
+    "whatis completion of field in anonymous union"
 
 # The following tests used to simply try to complete `${objdir}/file',
 # and so on.  The problem is that ${objdir} can be very long; the
@@ -674,83 +684,297 @@ gdb_test "cd ${fullsrcdir}" \
          "Working directory [string_to_regexp ${fullsrcdir}].*" \
          "cd to \${srcdir}"
 
-send_gdb "complete file ./gdb.base/compl\n"
-sleep 1
-gdb_expect  {
-    -re "file ./gdb.base/completion\\.exp.*$gdb_prompt $"
-       { pass "complete-command 'file ./gdb.base/compl'"}
-    -re ".*$gdb_prompt $"       { fail "complete-command 'file ./gdb.base/compl'" }
-    timeout         { fail "(timeout) complete-command 'file ./gdb.base/compl'" }
+
+# GDB used to fail adding / on directories, on the first try only.
+set uniquedir ../testsuite/gdb.base/comp-dir
+set escapeduniquedir [string_to_regexp ${uniquedir}]
+set uniquesu subdi
+set uniquesub ${uniquesu}r
+set escapeuniquesub [string_to_regexp ${uniquesub}]
+send_gdb "dir ${uniquedir}\t"
+gdb_expect {
+       -re "${escapeduniquedir}/" {
+           pass "directory completion"
+           send_gdb "${uniquesu}\t"
+       }
+       -re "${escapeduniquedir} $" {
+           fail "directory completion (old gdb bug)"
+           send_gdb "\b/${uniquesu}\t"
+       }
+       default {
+           fail "directory completion (timeout)"
+           send_gdb "\ndir ${uniquedir}/${uniquesu}\t"
+       }
 }
 
+gdb_expect {
+       -re "${escapeuniquesub}/$" {
+           pass "directory completion 2"
+       }
+       timeout {
+           fail "directory completion 2"
+       }
+}
+
+# Empty COMMAND sends no newline while " " sends the newline we need.
+gdb_test " " "Source directories searched: .*" "glob remaining of directory test"
+
+gdb_test "complete file ./gdb.base/compl" \
+    "file ./gdb.base/completion\\.exp.*" \
+    "complete-command 'file ./gdb.base/compl'"
+
+set test "complete 'file ./gdb.base/complet'"
 send_gdb "file ./gdb.base/complet\t"
-sleep 1
-gdb_expect  {
-        -re "^file ./gdb.base/completion\\.exp $"\
-            { send_gdb "\n"
-             # Ignore the exact error message.
-             gdb_test_multiple "" "complete 'file ./gdb.base/complet'" {
-                 -re "\r\nA program is being debugged already\\.\[\r\n\]+Are you sure you want to change the file\\? \\(y or n\\) $" {
-                     send_gdb "n\n"
-                     exp_continue
-                 }
-                 -re ".*$gdb_prompt $" { pass "complete 'file ./gdb.base/complet'" }
-             }
-            }
-        -re ".*$gdb_prompt $"       { fail "complete 'file ./gdb.base/complet'" }
-        timeout         { fail "(timeout) complete 'file ./gdb.base/complet'" }
-        }
+gdb_test_multiple "" "$test" {
+    -re "^file ./gdb.base/completion\\.exp $" {
+       send_gdb "\n"
+       # Ignore the exact error message.
+       gdb_test_multiple "" "complete 'file ./gdb.base/complet'" {
+           -re "\r\nA program is being debugged already\\.\[\r\n\]+Are you sure you want to change the file\\? \\(y or n\\) $" {
+               send_gdb "n\n"
+               exp_continue
+           }
+           -re "$gdb_prompt $" {
+               pass "$test"
+           }
+       }
+    }
+}
 
+set test "complete 'info func marke'"
 send_gdb "info func marke\t"
-sleep 1
-gdb_expect  {
-        -re "^info func marke.*r$"\
-            {
-             send_gdb "\t\t"
-              sleep 3
-              gdb_expect {
-                      -re "marker1.*$gdb_prompt info func marker$"\
-                      { send_gdb "\n"
-                        gdb_expect {
-                                -re "All functions matching regular expression \"marker\":.*File.*break1.c:\r\nint marker1\\((void|)\\);\r\nint marker2\\(int\\).*marker3\\(char.*char.*\\).*marker4\\(long int\\);.*$gdb_prompt $"\
-                                                  { pass "complete 'info func marke'"}
-                                -re ".*$gdb_prompt $" { fail "complete 'info func marke'"}
-                                timeout           {fail "(timeout) complete 'info func marke'"}
-                               }
-                      }
-                      -re ".*$gdb_prompt $" { fail "complete 'info func marke'"}
-                      timeout           {fail "(timeout) complete 'info func marke'"}
-                     }
-            }
-        -re ".*$gdb_prompt $"       { fail "complete 'info func marke'" }
-        timeout         { fail "(timeout) complete 'info func marke'" }
-        }
+gdb_test_multiple "" "$test" {
+    -re "^info func marke.*r$" {
+       send_gdb "\t\t"
+       gdb_test_multiple "" "$test" {
+           -re "marker1.*$gdb_prompt " {
+               send_gdb "\n"
+               gdb_test_multiple "" "$test" {
+                   -re "All functions matching regular expression \"marker\":.*File.*break1.c:\r\nint marker1\\((void|)\\);\r\nint marker2\\(int\\).*marker3\\(char.*char.*\\).*marker4\\(long( int)?\\);.*$gdb_prompt $" {
+                       pass "$test"
+                   }
+               }
+           }
+       }
+    }
+}
 
 
+set test "complete 'set follow-fork-mode'"
 send_gdb "set follow-fork-mode \t\t"
-sleep 1
-gdb_expect  {
-        -re "child.*parent.*$gdb_prompt set follow-fork-mode $"\
-            { send_gdb "\n"
-              gdb_expect {
-                      -re "Requires an argument.*child.*parent.*$gdb_prompt $"\
-                                        { pass "complete 'set follow-fork-mode'"}
-                      -re "Ambiguous item \"\"\\..*$gdb_prompt $"\
-                                        { pass "complete 'set follow-fork-mode'"}
-                      -re ".*$gdb_prompt $" { fail "complete 'set follow-fork-mode'"}
-                      timeout           {fail "(timeout) complete 'set follow-fork-mode'"}
-                     }
-            }
-        -re ".*$gdb_prompt $"       { fail "complete 'set follow-fork-mode'" }
-        timeout         { fail "(timeout) complete 'set follow-fork-mode'" }
+gdb_test_multiple "" "$test" {
+    -re "child.*parent.*$gdb_prompt " {
+       send_gdb "\n"
+       gdb_test_multiple "" "$test" {
+           -re "Requires an argument.*child.*parent.*$gdb_prompt $" {
+               pass "$test"
+           }
+           -re "Ambiguous item \"\"\\..*$gdb_prompt $" {
+               pass "$test"
+           }
+       }
+    }
+}
+
+#
+# Tests for the location completer
+#
+
+# Turn off pending breakpoint support so that we don't get queried
+# all the time.
+gdb_test_no_output "set breakpoint pending off"
+
+set subsrc [string range $srcfile 0 [expr {[string length $srcfile] - 3}]]
+set test "tab complete break $subsrc"
+send_gdb "break $subsrc\t\t"
+gdb_test_multiple "" $test {
+    -re "break\.c.*break1\.c.*$gdb_prompt " {
+       send_gdb "1\t\n"
+       gdb_test_multiple "" $test {
+           -re ".*Function \"$srcfile2\" not defined\..*$gdb_prompt " {
+               pass $test
+           }
+           -re "$gdb_prompt p$" {
+               fail $test
+           }
+       }
+    }
+
+    -re "$gdb_prompt p$" {
+       fail $test
+    }
+}
+
+gdb_test "complete break $subsrc" "break\.c.*break1\.c"
+
+set test "tab complete break need"
+send_gdb "break need\t"
+gdb_test_multiple "" $test {
+    -re "break need_malloc " {
+       send_gdb "\n"
+       gdb_test_multiple "" $test {
+           -re ".*Breakpoint.*at .*/$srcfile, line .*$gdb_prompt " {
+               pass $test
+               gdb_test_no_output "delete breakpoint \$bpnum" \
+                   "delete breakpoint for $test"
+           }
+           -re "$gdb_prompt p$" {
+               fail $test
+           }
+       }
+    }
+    -re "$gdb_prompt p$" {
+       fail $test
+    }
+}
+
+gdb_test "complete break need" "need_malloc"
+
+# gdb/17960
+# Enabling max-completions is necessary to trigger the bug.
+gdb_test_no_output "set max-completions 10"
+set test "tab complete break $srcfile:ma"
+send_gdb "break $srcfile:ma\t"
+gdb_test_multiple "" $test {
+    -re "break $srcfile:main " {
+       send_gdb "\n"
+       gdb_test_multiple "" $test {
+           -re ".*Breakpoint.*at .*/$srcfile, line .*$gdb_prompt " {
+               pass $test
+               gdb_test_no_output "delete breakpoint \$bpnum" \
+                   "delete breakpoint for $test"
+           }
+           -re "$gdb_prompt p$" {
+               fail $test
+           }
+       }
+    }
+    -re "$gdb_prompt p$" {
+       fail $test
+    }
+}
+
+gdb_test "complete break $srcfile:ma" "break\.c:main"
+
+# End of gdb/17960 testing.
+
+#
+# Completion limiting.
+#
+
+gdb_test_no_output "set max-completions 5"
+
+set test "command-name completion limiting using tab character"
+send_gdb "p\t"
+gdb_test_multiple "" "$test" {
+    -re "^p\\\x07$" {
+       send_gdb "\t"
+       gdb_test_multiple "" "$test" {
+           -re "List may be truncated, max-completions reached.*\r\n$gdb_prompt p$" {
+               # Complete the command and ignore the output to resync
+               # gdb for the next test.
+               send_gdb "\n"
+               gdb_test_multiple "" "$test" {
+                   -re "$gdb_prompt $" {
+                       pass "$test"
+                   }
+               }
+           }
+           -re "$gdb_prompt p$" {
+               # Complete the command and ignore the output to resync
+               # gdb for the next test.
+               send_gdb "\n"
+               gdb_test_multiple "" "$test" {
+                   -re "$gdb_prompt $" {
+                       fail "$test"
+                   }
+               }
+           }
         }
+    }
+}
 
-# Restore globals modified in this test...
-if [info exists old_inputrc] {
-    set env(INPUTRC) $old_inputrc
-} else {
-    unset env(INPUTRC)
+set test "command-name completion limiting using complete command"
+send_gdb "complete p\n"
+gdb_test_multiple "" "$test" {
+    -re "List may be truncated, max-completions reached.*\r\n$gdb_prompt $" {
+       pass "$test"
+    }
 }
-set timeout $oldtimeout1
 
-return 0
+gdb_test_no_output "set max-completions 3"
+
+set test "symbol-name completion limiting using tab character"
+send_gdb "p marker\t"
+gdb_test_multiple "" "$test" {
+    -re "^p marker\\\x07$" {
+       send_gdb "\t"
+       gdb_test_multiple "" "$test" {
+           -re "List may be truncated, max-completions reached.*\r\n$gdb_prompt p marker$" {
+               # Complete the command and ignore the output to resync
+               # gdb for the next test.
+               send_gdb "\n"
+               gdb_test_multiple "" "$test" {
+                   -re "$gdb_prompt $" {
+                       pass "$test"
+                   }
+               }
+           }
+           -re "$gdb_prompt p marker$" {
+               # Complete the command and ignore the output to resync
+               # gdb for the next test.
+               send_gdb "\n"
+               gdb_test_multiple "" "$test" {
+                   -re "$gdb_prompt $" {
+                       fail "$test"
+                   }
+               }
+           }
+        }
+    }
+}
+
+set test "symbol-name completion limiting using complete command"
+send_gdb "complete p mark\n"
+gdb_test_multiple "" "$test" {
+    -re "List may be truncated, max-completions reached.*\r\n$gdb_prompt $" {
+       pass "$test"
+    }
+}
+
+gdb_test_no_output "set max-completions unlimited"
+
+if {![skip_tui_tests] && ![target_info exists gdb,nointerrupts]} {
+    set test "test completion of layout names"
+    send_gdb "layout\t\t\t"
+    gdb_test_multiple "" "$test" {
+       -re "asm *next *prev *regs *split *src *\r\n$gdb_prompt layout $" {
+           pass "$test"
+       }
+    }
+    send_gdb "\003"
+    set test "quit command input after testing layout completion"
+    gdb_test_multiple "" "$test" {
+       -re "$gdb_prompt $" {
+           pass "$test"
+       }
+    }
+}
+if {![skip_tui_tests] && ![target_info exists gdb,nointerrupts]} {
+    with_test_prefix "focus command" {
+       set test "test completion"
+       send_gdb "focus \t\t"
+       gdb_test_multiple "" "$test" {
+           -re "cmd *next *prev *src *\r\n$gdb_prompt focus $" {
+               pass "$test"
+           }
+       }
+       send_gdb "\003"
+       set test "quit command input after testing completion"
+       gdb_test_multiple "" "$test" {
+           -re "$gdb_prompt $" {
+               pass "$test"
+           }
+       }
+    }
+}
This page took 0.044886 seconds and 4 git commands to generate.