diff options
-rw-r--r-- | gdb/testsuite/gdb.base/pointers.exp | 2 | ||||
-rw-r--r-- | gdb/testsuite/gdb.python/py-parameter.exp | 2 | ||||
-rw-r--r-- | gdb/testsuite/gdb.python/py-xmethods.exp | 1 |
3 files changed, 3 insertions, 2 deletions
diff --git a/gdb/testsuite/gdb.base/pointers.exp b/gdb/testsuite/gdb.base/pointers.exp index 15f7879..e640661 100644 --- a/gdb/testsuite/gdb.base/pointers.exp +++ b/gdb/testsuite/gdb.base/pointers.exp @@ -209,7 +209,7 @@ gdb_test "print **ptr_to_ptr_to_float" " = 100" \ gdb_test "break marker1" ".*" "" gdb_test "cont" "Break.* marker1 \\(\\) at .*:$decimal.*" \ - continue to marker1" + "continue to marker1" gdb_test "up" "more_code.*" "up from marker1" gdb_test "print *pUC" " = 21 \'.025\'.*" "print value of *pUC" diff --git a/gdb/testsuite/gdb.python/py-parameter.exp b/gdb/testsuite/gdb.python/py-parameter.exp index 98d4b2d..199d3bc 100644 --- a/gdb/testsuite/gdb.python/py-parameter.exp +++ b/gdb/testsuite/gdb.python/py-parameter.exp @@ -199,7 +199,7 @@ proc_with_prefix test_file_parameter { } { "The name of the file is foo.txt.*" "show initial file value" gdb_test "set test-file-param bar.txt" \ "The name of the file has been changed to bar.txt" \ - "set new file parameter" 1 + "set new file parameter" gdb_test "show test-file-param" \ "The name of the file is bar.txt.*" "show new file value" gdb_test "python print (test_file_param.value)" \ diff --git a/gdb/testsuite/gdb.python/py-xmethods.exp b/gdb/testsuite/gdb.python/py-xmethods.exp index f879e9c..1805778 100644 --- a/gdb/testsuite/gdb.python/py-xmethods.exp +++ b/gdb/testsuite/gdb.python/py-xmethods.exp @@ -130,6 +130,7 @@ gdb_test "p g.size_mul< 5 >()" "From Python G<>::size_mul.*" \ gdb_test "p g.mul<double>(2.0)" "From Python G<>::mul.*" \ "after: g.mul<double>(2.0)" gdb_test "p g.mul<char>('a')" "From Python G<>::mul.*" \ + "after: g.mul<char>('a')" gdb_test "p g_ptr->mul<char>('a')" "From Python G<>::mul.*" \ "after: g_ptr->mul<char>('a')" |