diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index ed0d374339..105575e764 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2017-02-10 Tom Tromey + + * gdb.python/py-xmethods.exp: Use "p" command, not "P". + 2017-02-10 Martin Galvan PR gdb/21122 diff --git a/gdb/testsuite/gdb.python/py-xmethods.exp b/gdb/testsuite/gdb.python/py-xmethods.exp index dcd7191283..6f8e0238aa 100644 --- a/gdb/testsuite/gdb.python/py-xmethods.exp +++ b/gdb/testsuite/gdb.python/py-xmethods.exp @@ -106,8 +106,8 @@ gdb_test "p a1.geta()" "From Python .*5" "after: a1.geta()" gdb_test "p ++a1" "From Python .*6" "after: ++a1" gdb_test "p a1.getarrayind(5)" "From Python .*5" \ "after: a1.getarrayind(5)" -gdb_test "P a1\[6\]" ".*int &.*6" "after a1\[\]" -gdb_test "P b1\[7\]" ".*const int &.*7" "after b1\[\]" +gdb_test "p a1\[6\]" ".*int &.*6" "after a1\[\]" +gdb_test "p b1\[7\]" ".*const int &.*7" "after b1\[\]" # Note the following test. Xmethods on dynamc types are not looked up # currently. Hence, even though a_ptr points to a B object, the xmethod # defined for A objects is invoked.