diff --git a/gdb/testsuite/gdb.tui/tuiterm.exp b/gdb/testsuite/gdb.tui/tuiterm.exp index 6b1b044535a..c82db21a92b 100644 --- a/gdb/testsuite/gdb.tui/tuiterm.exp +++ b/gdb/testsuite/gdb.tui/tuiterm.exp @@ -492,6 +492,34 @@ proc test_delete_line { } { } 3 0 } +proc test_delete_character { } { + Term::_move_cursor 2 1 + + Term::_csi_P + check "delete character, default param" { + "abcdefgh" + "ijlmnop " + "qrstuvwx" + "yz01234 " + } 2 1 + + Term::_csi_P 3 + check "delete character, explicit param" { + "abcdefgh" + "ijop " + "qrstuvwx" + "yz01234 " + } 2 1 + + Term::_csi_P 12 + check "delete character, more than number of columns" { + "abcdefgh" + "ij " + "qrstuvwx" + "yz01234 " + } 2 1 +} + proc test_erase_character { } { Term::_move_cursor 3 2 Term::_csi_X @@ -600,6 +628,7 @@ foreach_with_prefix test { test_erase_in_display test_erase_in_line test_delete_line + test_delete_character test_erase_character test_repeat test_vertical_line_position_absolute diff --git a/gdb/testsuite/lib/tuiterm.exp b/gdb/testsuite/lib/tuiterm.exp index 7696fea4c7e..9053f7dba6a 100644 --- a/gdb/testsuite/lib/tuiterm.exp +++ b/gdb/testsuite/lib/tuiterm.exp @@ -349,6 +349,33 @@ namespace eval Term { } } + # Delete Character. + # + # https://vt100.net/docs/vt510-rm/DCH.html + proc _csi_P {args} { + set count [_default [lindex $args 0] 1] + + _log_cur "Delete character ($count)" { + variable _cur_row + variable _cur_col + variable _chars + variable _cols + + # Move all characters right of the cursor N positions left. + set out_col [expr $_cur_col] + set in_col [expr $_cur_col + $count] + + while {$in_col < $_cols} { + set _chars($out_col,$_cur_row) $_chars($in_col,$_cur_row) + incr in_col + incr out_col + } + + # Clear the rest of the line. + _clear_in_line $out_col $_cols $_cur_row + } + } + # Erase chars. # # https://vt100.net/docs/vt510-rm/ECH.html