Move TUI completion tests to gdb.tui/completion.exp
authorPedro Alves <palves@redhat.com>
Wed, 8 Mar 2017 00:14:58 +0000 (00:14 +0000)
committerPedro Alves <palves@redhat.com>
Wed, 8 Mar 2017 00:14:58 +0000 (00:14 +0000)
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.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.base/completion.exp
gdb/testsuite/gdb.tui/completion.exp [new file with mode: 0644]

index d38590797d66724dec04c6fafe7c8e2e71c23d12..f9865207e4764f9e262b061d353c11cb4b972fb2 100644 (file)
@@ -1,3 +1,8 @@
+2017-03-08  Pedro Alves  <palves@redhat.com>
+
+       * gdb.base/completion.exp: Move TUI completion tests to ...
+       * gdb.tui/completion.exp: ... this new file.
+
 2017-03-08  Pedro Alves  <palves@redhat.com>
 
        * gdb.base/tui-disasm-long-lines.c,
index 4a3ee4b95a2d78d3e2257249211662e785a2186b..6597ea7b8d41e8a219156fe594b2523ad8e325dd 100644 (file)
@@ -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"
-           }
-       }
-    }
-}
diff --git a/gdb/testsuite/gdb.tui/completion.exp b/gdb/testsuite/gdb.tui/completion.exp
new file mode 100644 (file)
index 0000000..ac5d5f2
--- /dev/null
@@ -0,0 +1,58 @@
+# Copyright 2015-2017 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
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+gdb_exit
+gdb_start
+
+if {[skip_tui_tests] || [target_info exists gdb,nointerrupts]} {
+    return
+}
+
+gdb_test_no_output "set max-completions unlimited"
+
+with_test_prefix "completion of layout names" {
+    set test "tab completion"
+    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"
+    gdb_test_multiple "" "$test" {
+       -re "$gdb_prompt $" {
+           pass "$test"
+       }
+    }
+}
+
+with_test_prefix "completion of focus command" {
+    set test "tab 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"
+    gdb_test_multiple "" "$test" {
+       -re "$gdb_prompt $" {
+           pass "$test"
+       }
+    }
+}
This page took 0.035042 seconds and 4 git commands to generate.