3cdd4d2bbe
215816). - Resolves: rhbz#215816
53 lines
1.6 KiB
Diff
53 lines
1.6 KiB
Diff
https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=215816
|
|
|
|
|
|
2007-01-03 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
* gdb.base/readline.exp: Set $TERM. Test arrow keys in
|
|
secondary prompts.
|
|
|
|
|
|
--- ./gdb/testsuite/gdb.base/readline.exp 8 Jun 2003 13:14:05 -0000 1.2
|
|
+++ ./gdb/testsuite/gdb.base/readline.exp 3 Jan 2007 21:22:47 -0000
|
|
@@ -1,4 +1,4 @@
|
|
-# Copyright 2002 Free Software Foundation, Inc.
|
|
+# Copyright 2002, 2003, 2007 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
|
|
@@ -159,6 +159,14 @@ if [info exists env(INPUTRC)] {
|
|
}
|
|
set env(INPUTRC) "/dev/null"
|
|
|
|
+# The arrow key test relies on the standard VT100 bindings, so make
|
|
+# sure that an appropriate terminal is selected. The same bug
|
|
+# doesn't show up if we use ^P / ^N instead.
|
|
+if [info exists env(TERM)] {
|
|
+ set old_term $env(TERM)
|
|
+}
|
|
+set env(TERM) "vt100"
|
|
+
|
|
gdb_start
|
|
gdb_reinitialize_dir $srcdir/$subdir
|
|
|
|
@@ -178,6 +186,18 @@ operate_and_get_next "operate-and-get-ne
|
|
"p 5" "" \
|
|
"end" ".* = 5"
|
|
|
|
+# Verify that arrow keys work in secondary prompts. The control
|
|
+# sequence is a hard-coded VT100 up arrow.
|
|
+gdb_test "print 42" "\\\$\[0-9\]* = 42"
|
|
+set msg "arrow keys with secondary prompt"
|
|
+gdb_test_multiple "if 1 > 0\n\033\[A\033\[A\nend" $msg {
|
|
+ -re ".*\\\$\[0-9\]* = 42\r\n$gdb_prompt $" {
|
|
+ pass $msg
|
|
+ }
|
|
+ -re ".*Undefined command:.*$gdb_prompt $" {
|
|
+ fail $msg
|
|
+ }
|
|
+}
|
|
|
|
# Now repeat the first test with a history file that fills the entire
|
|
# history list.
|