[gdb/testsuite] Generate long string in gdb.base/page.exp
I noticed in gdb.base/page.exp: ... set fours [string repeat 4 40] ... but then shortly afterwards: ... [list 1\r\n 2\r\n 3\r\n 444444444444444444444444444444] ... Summarize the long string in the same way using string repeat: ... [list 1\r\n 2\r\n 3\r\n [string repeat 4 30]] ... Tested on x86_64-linux.
This commit is contained in:
parent
58d047ac25
commit
c5ba639d1b
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ gdb_test_no_output "set width 30"
|
|||
send_gdb "printf \"$str\"\n"
|
||||
gdb_expect_list "paged count for interrupt" \
|
||||
".*$pagination_prompt" \
|
||||
[list 1\r\n 2\r\n 3\r\n 444444444444444444444444444444]
|
||||
[list 1\r\n 2\r\n 3\r\n [string repeat 4 30]]
|
||||
|
||||
gdb_test "q" "Quit" "quit while paging"
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue