[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:
Tom de Vries 2023-05-05 18:57:06 +02:00
parent 58d047ac25
commit c5ba639d1b

View file

@ -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"