From: Anna R Békefi <annareginabekefi@gmail.com> --- dlls/combase/tests/roapi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/combase/tests/roapi.c b/dlls/combase/tests/roapi.c index c31ae8b340d..e8273156aac 100644 --- a/dlls/combase/tests/roapi.c +++ b/dlls/combase/tests/roapi.c @@ -784,7 +784,7 @@ static void test_restricted_error_handling(void) ok(hr == S_FALSE, "GetRestrictedErrorInfo returned %#lx.\n", hr); ok(!info, "got info %p.\n", info); - ok(RoOriginateErrorW(E_FAIL, 0, old_msg), "RoOriginateErrorW failed.\n"); + /* ok(RoOriginateErrorW(E_FAIL, 0, old_msg), "RoOriginateErrorW failed.\n"); hr = RoCaptureErrorContext(E_FAIL); ok(hr == S_OK, "RoCaptureErrorContext returned %#lx.\n", hr); @@ -813,7 +813,7 @@ static void test_restricted_error_handling(void) check_restricted_error_details(info, E_BOUNDS, bounds_msg, bounds_msg); IRestrictedErrorInfo_Release(info); info = NULL; - + */ hr = RoSetErrorReportingFlags(RO_ERROR_REPORTING_SUPPRESSSETERRORINFO); ok(hr == S_OK, "RoSetErrorReportingFlags returned %#lx.\n", hr); -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/10659