From: Simon Marchi Date: Tue, 7 Jul 2015 15:39:06 +0000 (-0400) Subject: Fix test for Python 3 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3e221d361f5647b56b7cc3ebf5ff487f417ceed0;p=binutils-gdb.git Fix test for Python 3 gdb/testsuite/ChangeLog: * gdb.python/py-lazy-string.exp: Add missing parentheses to print. --- diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 2a63301d999..5222118eec1 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2015-07-07 Simon Marchi + + * gdb.python/py-lazy-string.exp: Add missing parentheses to + print. + 2015-07-07 Yao Qi * gdb.arch/thumb-singlestep.exp: Do one more single step. diff --git a/gdb/testsuite/gdb.python/py-lazy-string.exp b/gdb/testsuite/gdb.python/py-lazy-string.exp index 55e903e9281..4b98b088ade 100644 --- a/gdb/testsuite/gdb.python/py-lazy-string.exp +++ b/gdb/testsuite/gdb.python/py-lazy-string.exp @@ -36,7 +36,7 @@ gdb_continue_to_breakpoint "break here" gdb_test_no_output "python null = gdb.parse_and_eval(\"null\")" -gdb_test "python print null.lazy_string(length=0).value()" \ +gdb_test "python print(null.lazy_string(length=0).value())" \ "gdb.MemoryError: Cannot create a value from NULL.*Error while executing Python code." -gdb_test "python print null.lazy_string(length=3).value()" \ +gdb_test "python print(null.lazy_string(length=3).value())" \ "gdb.MemoryError: Cannot create a lazy string with address 0x0, and a non-zero length.*Error while executing Python code."