diff options
author | Paul Pluzhnikov <ppluzhnikov@google.com> | 2023-05-15 15:03:38 +0000 |
---|---|---|
committer | Paul Pluzhnikov <ppluzhnikov@google.com> | 2023-05-16 12:27:47 +0000 |
commit | 73eff1cbd3e35f9f3ea3f69d145aa74c57043953 (patch) | |
tree | 2f1fc63b221463a655977dd871b1a34dc7d2fc06 | |
parent | 66b8e6c7b8d3c137029f4f2ab8c5b798aa1cbdd7 (diff) | |
download | gdb-73eff1cbd3e35f9f3ea3f69d145aa74c57043953.zip gdb-73eff1cbd3e35f9f3ea3f69d145aa74c57043953.tar.gz gdb-73eff1cbd3e35f9f3ea3f69d145aa74c57043953.tar.bz2 |
Update comments for the gdb/24331 fix.
Approved-by: Andrew Burgess <aburgess@redhat.com>
-rw-r--r-- | gdb/testsuite/gdb.base/printcmds.exp | 5 | ||||
-rw-r--r-- | gdb/testsuite/gdb.python/py-format-string.exp | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/gdb/testsuite/gdb.base/printcmds.exp b/gdb/testsuite/gdb.base/printcmds.exp index f2be549..2506f74 100644 --- a/gdb/testsuite/gdb.base/printcmds.exp +++ b/gdb/testsuite/gdb.base/printcmds.exp @@ -1077,7 +1077,10 @@ proc test_repeat_bytes {} { } } -# Test for BZ#24331 +# Test that 'set elements' correctly limits the number of characters +# printed from a string when a string ends with repeated characters. +# This is gdb/24331 + proc test_repeat_bytes_limit {} { gdb_test "print -elem 3 -- \"AAAAA\"" "= \"AAA\"..." gdb_test "print -char 3 -elem 10 -- \"AAAAA\"" "= \"AAA\"..." diff --git a/gdb/testsuite/gdb.python/py-format-string.exp b/gdb/testsuite/gdb.python/py-format-string.exp index 2a011eb..55a3776 100644 --- a/gdb/testsuite/gdb.python/py-format-string.exp +++ b/gdb/testsuite/gdb.python/py-format-string.exp @@ -745,8 +745,6 @@ proc test_max_string_one { setting unlimited } { "${default_pointer_regexp} \"hel\"..." check_format_string "a_binary_string" $opts \ "${default_pointer_regexp} \"hel\"..." - # This will print four characters instead of three, see - # <https://sourceware.org/bugzilla/show_bug.cgi?id=24331>. check_format_string "a_binary_string_array" $opts \ "\"hel\"..." check_format_string "a_big_string" $opts \ |