diff options
Diffstat (limited to 'gdb/unittests')
-rw-r--r-- | gdb/unittests/cli-utils-selftests.c | 4 | ||||
-rw-r--r-- | gdb/unittests/parse-connection-spec-selftests.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/gdb/unittests/cli-utils-selftests.c b/gdb/unittests/cli-utils-selftests.c index 6b0efe5..99b98bf 100644 --- a/gdb/unittests/cli-utils-selftests.c +++ b/gdb/unittests/cli-utils-selftests.c @@ -83,7 +83,7 @@ test_number_or_range_parser () minus_one.get_number (); SELF_CHECK (false); } - catch (const gdb_exception_RETURN_MASK_ERROR &ex) + catch (const gdb_exception_error &ex) { SELF_CHECK (ex.reason == RETURN_ERROR); SELF_CHECK (ex.error == GENERIC_ERROR); @@ -219,7 +219,7 @@ test_parse_flags_qcs () &flags); SELF_CHECK (false); } - catch (const gdb_exception_RETURN_MASK_ERROR &ex) + catch (const gdb_exception_error &ex) { SELF_CHECK (ex.reason == RETURN_ERROR); SELF_CHECK (ex.error == GENERIC_ERROR); diff --git a/gdb/unittests/parse-connection-spec-selftests.c b/gdb/unittests/parse-connection-spec-selftests.c index a33b3d8..a4beb66 100644 --- a/gdb/unittests/parse-connection-spec-selftests.c +++ b/gdb/unittests/parse-connection-spec-selftests.c @@ -216,7 +216,7 @@ test_conn (const parse_conn_test &c) { ret = parse_connection_spec (c.connspec, &hint); } - catch (const gdb_exception_RETURN_MASK_ERROR &ex) + catch (const gdb_exception_error &ex) { /* If we caught an error, we should check if this connection spec was supposed to fail. */ |