aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.base/completion.exp
diff options
context:
space:
mode:
authorPedro Alves <palves@redhat.com>2017-03-08 00:14:58 +0000
committerPedro Alves <palves@redhat.com>2017-03-08 00:14:58 +0000
commit1a4dd9ddae4ce51724b4e08c6304e7c64f8f916f (patch)
tree8383c4c42f8a301311dd8026e5094c79c52f71da /gdb/testsuite/gdb.base/completion.exp
parent7cbbff33a502dcba0264a1935840345274b8aee2 (diff)
downloadgdb-1a4dd9ddae4ce51724b4e08c6304e7c64f8f916f.zip
gdb-1a4dd9ddae4ce51724b4e08c6304e7c64f8f916f.tar.gz
gdb-1a4dd9ddae4ce51724b4e08c6304e7c64f8f916f.tar.bz2
Move TUI completion tests to gdb.tui/completion.exp
gdb/testsuite/ChangeLog: 2017-03-08 Pedro Alves <palves@redhat.com> * gdb.base/completion.exp: Move TUI completion tests to ... * gdb.tui/completion.exp: ... this new file.
Diffstat (limited to 'gdb/testsuite/gdb.base/completion.exp')
-rw-r--r--gdb/testsuite/gdb.base/completion.exp37
1 files changed, 0 insertions, 37 deletions
diff --git a/gdb/testsuite/gdb.base/completion.exp b/gdb/testsuite/gdb.base/completion.exp
index 4a3ee4b..6597ea7 100644
--- a/gdb/testsuite/gdb.base/completion.exp
+++ b/gdb/testsuite/gdb.base/completion.exp
@@ -940,40 +940,3 @@ gdb_test_multiple "" "$test" {
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"
- }
- }
- }
-}