diff options
Diffstat (limited to 'gdb/testsuite/gdb.python/py-missing-debug.exp')
-rw-r--r-- | gdb/testsuite/gdb.python/py-missing-debug.exp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gdb/testsuite/gdb.python/py-missing-debug.exp b/gdb/testsuite/gdb.python/py-missing-debug.exp index 0aa4aaa..d1eef34 100644 --- a/gdb/testsuite/gdb.python/py-missing-debug.exp +++ b/gdb/testsuite/gdb.python/py-missing-debug.exp @@ -201,8 +201,8 @@ proc check_bad_name {name} { set name_re [string_to_regexp $name] set re \ [multi_line \ - "ValueError: invalid character '.' in handler name: $name_re" \ - "Error while executing Python code\\."] + "ValueError.*: invalid character '.' in handler name: $name_re" \ + "Error occurred in Python.*"] gdb_test "python register(\"$name\")" $re \ "check that '$name' is not accepted" @@ -442,13 +442,13 @@ with_test_prefix "check handler replacement" { # the same name. gdb_test "python gdb.missing_debug.register_handler(pspace, log_handler(\"Foo\"))" \ [multi_line \ - "RuntimeError: Handler Foo already exists\\." \ - "Error while executing Python code\\."] + "RuntimeError.*: Handler Foo already exists\\." \ + "Error occurred in Python.*"] gdb_test "python gdb.missing_debug.register_handler(handler=log_handler(\"Foo\"), locus=pspace)" \ [multi_line \ - "RuntimeError: Handler Foo already exists\\." \ - "Error while executing Python code\\."] + "RuntimeError.*: Handler Foo already exists\\." \ + "Error occurred in Python.*"] # And now try again, but this time with 'replace=True', we # shouldn't get an error in this case. @@ -464,8 +464,8 @@ with_test_prefix "check handler replacement" { gdb_test "python gdb.missing_debug.register_handler(pspace, log_handler(\"Foo\"))" \ [multi_line \ - "RuntimeError: Handler Foo already exists\\." \ - "Error while executing Python code\\."] \ + "RuntimeError.*: Handler Foo already exists\\." \ + "Error occurred in Python.*"] \ "still get an error when handler is disabled" gdb_test_no_output \ |