diff options
Diffstat (limited to 'gdb/testsuite/gdb.python')
-rw-r--r-- | gdb/testsuite/gdb.python/py-breakpoint.exp | 4 | ||||
-rw-r--r-- | gdb/testsuite/gdb.python/py-cmd.exp | 2 | ||||
-rw-r--r-- | gdb/testsuite/gdb.python/py-linetable.exp | 4 | ||||
-rw-r--r-- | gdb/testsuite/gdb.python/py-xmethods.exp | 2 | ||||
-rw-r--r-- | gdb/testsuite/gdb.python/python.exp | 2 |
5 files changed, 7 insertions, 7 deletions
diff --git a/gdb/testsuite/gdb.python/py-breakpoint.exp b/gdb/testsuite/gdb.python/py-breakpoint.exp index 7503f5a..e7b2948 100644 --- a/gdb/testsuite/gdb.python/py-breakpoint.exp +++ b/gdb/testsuite/gdb.python/py-breakpoint.exp @@ -72,7 +72,7 @@ proc test_bkpt_basic { } { gdb_test "python print (blist\[1\].location)" \ "py-breakpoint\.c:${mult_line}*" \ - "Check breakpoint location @mult_line" + "check breakpoint location @mult_line" # Check hit and ignore counts. gdb_test "python print (blist\[1\].hit_count)" \ @@ -392,7 +392,7 @@ proc test_bkpt_eval_funcs { } { gdb_test "python eval_bp2.stop = stop_func" \ "RuntimeError: Only one stop condition allowed. There is currently a GDB.*" \ - "Assign stop function to a breakpoint that has a condition" + "assign stop function to a breakpoint that has a condition" delete_breakpoints gdb_breakpoint [gdb_get_line_number "Break at multiply."] diff --git a/gdb/testsuite/gdb.python/py-cmd.exp b/gdb/testsuite/gdb.python/py-cmd.exp index 0665b8e..f42fcac 100644 --- a/gdb/testsuite/gdb.python/py-cmd.exp +++ b/gdb/testsuite/gdb.python/py-cmd.exp @@ -179,7 +179,7 @@ gdb_py_test_multiple "expression completion command" \ gdb_test "complete expr_test bar\." \ "expr_test bar\.bc.*expr_test bar\.ij.*" \ - "Test completion through complete command" + "test completion through complete command" if { [readline_is_used] } { set test "complete 'expr_test bar.i'" diff --git a/gdb/testsuite/gdb.python/py-linetable.exp b/gdb/testsuite/gdb.python/py-linetable.exp index 702c654..b65f46d 100644 --- a/gdb/testsuite/gdb.python/py-linetable.exp +++ b/gdb/testsuite/gdb.python/py-linetable.exp @@ -62,7 +62,7 @@ gdb_py_test_silent_cmd "python fset = lt.source_lines()" \ "Get all source lines into a frozen set" 0 gdb_test "python print (sorted(fset))" \ "\\\[20, 21, 22, 24, 25, 28, 29, 30, 32, 33, 37, 39, 40, 42, 44, 45, 46\\\].*" \ - "Test frozen set contains line numbers" + "test frozen set contains line numbers" # Test gdb.Linetable.has_line () gdb_test "python print(lt.has_line(20))" \ @@ -73,4 +73,4 @@ gdb_test "python print(lt.has_line(44))" \ "Test has_pcs at line 40" gdb_test "python print(lt.has_line(10))" \ "False.*" \ - "Test has_pcs at line 10" + "test has_pcs at line 10" diff --git a/gdb/testsuite/gdb.python/py-xmethods.exp b/gdb/testsuite/gdb.python/py-xmethods.exp index 0d7957f..cdb374f 100644 --- a/gdb/testsuite/gdb.python/py-xmethods.exp +++ b/gdb/testsuite/gdb.python/py-xmethods.exp @@ -125,7 +125,7 @@ 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.*" \ gdb_test "p g_ptr->mul<char>('a')" "From Python G<>::mul.*" \ - "After: g_ptr->mul<char>('a')" + "after: g_ptr->mul<char>('a')" # Tests for 'disable/enable xmethod' command. gdb_test_no_output "disable xmethod progspace G_methods" \ diff --git a/gdb/testsuite/gdb.python/python.exp b/gdb/testsuite/gdb.python/python.exp index b657016..e789359 100644 --- a/gdb/testsuite/gdb.python/python.exp +++ b/gdb/testsuite/gdb.python/python.exp @@ -408,7 +408,7 @@ gdb_py_test_silent_cmd "set python print-stack none" \ "Test print-stack set setting to none" 1 gdb_test "show python print-stack" \ "The mode of Python stack printing on error is \"none\".*" \ - "Test print-stack show setting to none" + "test print-stack show setting to none" gdb_py_test_silent_cmd "set python print-stack message" \ "Test print-stack set setting to message" 1 |