diff options
Diffstat (limited to 'gdb/testsuite/gdb.python/python.exp')
-rw-r--r-- | gdb/testsuite/gdb.python/python.exp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/testsuite/gdb.python/python.exp b/gdb/testsuite/gdb.python/python.exp index c0d398c..175a6de 100644 --- a/gdb/testsuite/gdb.python/python.exp +++ b/gdb/testsuite/gdb.python/python.exp @@ -132,7 +132,7 @@ gdb_test_multiline "post event insertion" \ "end" "" gdb_test "python print (someVal)" "1" "test post event execution" -gdb_test "python gdb.post_event(str(1))" "RuntimeError: Posted event is not callable.*" \ +gdb_test "python gdb.post_event(str(1))" "RuntimeError.*: Posted event is not callable.*" \ "test non callable class" send_gdb "python gdb.post_event(lambda: invalid())\n" @@ -162,7 +162,7 @@ gdb_test_multiple "python print (\"\\n\" * $lines)" $test { pass $test } } -gdb_test "q" "Quit.*Error while executing Python.*" "verify pagination beforehand: q" +gdb_test "q" "Quit.*" "verify pagination beforehand: q" gdb_test "python if gdb.execute('python print (\"\\\\n\" * $lines)', to_string=True) == \"\\n\" * [expr $lines + 1]: print (\"yes\")" "yes" "gdb.execute does not page" @@ -178,7 +178,7 @@ gdb_test_multiple "python print (\"\\n\" * $lines)" $test { pass $test } } -gdb_test "q" "Quit.*Error while executing Python.*" "verify pagination afterwards: q" +gdb_test "q" "Quit.*" "verify pagination afterwards: q" gdb_test_no_output "set height 0" @@ -223,7 +223,7 @@ runto $lineno # Test gdb.decode_line. gdb_test "python gdb.decode_line(\"main.c:43\")" \ - "gdb.error: No source file named main.c.*" "test decode_line no source named main" + "gdb.error.*: No source file named main.c.*" "test decode_line no source named main" with_test_prefix "test decode_line current location" { gdb_py_test_silent_cmd "python symtab = gdb.decode_line()" "decode current line" 1 @@ -253,7 +253,7 @@ with_test_prefix "test decode_line" { gdb_test "python print (symtab\[1\]\[0\].line)" "26" "python.c:26 line number" gdb_test "python gdb.decode_line(\"randomfunc\")" \ - "gdb.error: Function \"randomfunc\" not defined.*" "randomfunc" + "gdb.error.*: Function \"randomfunc\" not defined.*" "randomfunc" gdb_py_test_silent_cmd "python symtab = gdb.decode_line(\"func1\")" "func1()" 1 gdb_test "python print (len(symtab))" "2" "func1 length 2" gdb_test "python print (len(symtab\[1\]))" "1" "func1 length 1" |