mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-24 20:28:28 +08:00
GDB/testsuite: Tighten `set print elements' error check
Match the whole error message expected to be given rather than omitting the part about the "unlimited" keyword. There's no point in omitting the missing part first, and second with an upcoming change the part in parentheses will no longer be a fixed string, so doing a full match will ensure the algorithm correctly builds the message expected here. Also avoid any wildcard matches.
This commit is contained in:
@ -525,7 +525,8 @@ gdb_test_no_output "set print asm-demangle" "set print asm-demangle"
|
||||
#test set print demangle
|
||||
gdb_test_no_output "set print demangle" "set print demangle"
|
||||
#test set print elements
|
||||
gdb_test "set print elements" "Argument required .integer to set it to.*"
|
||||
gdb_test "set print elements" \
|
||||
"Argument required \\(integer to set it to, or \"unlimited\"\\)\\."
|
||||
#test set print object
|
||||
gdb_test_no_output "set print object" "set print object"
|
||||
#test set print pretty
|
||||
|
Reference in New Issue
Block a user