[PATCH v3 0/1] MR1961: d3d12/tests: Allow a broken Windows 10 1709 hresult.
-- v3: d3d12/tests: Allow a broken Windows 10 1709 hresult. https://gitlab.winehq.org/wine/wine/-/merge_requests/1961
From: Francois Gouget <fgouget(a)codeweavers.com> Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=54298 --- dlls/d3d12/tests/d3d12.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dlls/d3d12/tests/d3d12.c b/dlls/d3d12/tests/d3d12.c index 0d3deafda45..33c8ad8dfff 100644 --- a/dlls/d3d12/tests/d3d12.c +++ b/dlls/d3d12/tests/d3d12.c @@ -1409,7 +1409,8 @@ static void test_desktop_window(void) swapchain_desc.Width = rect.right; swapchain_desc.Height = rect.bottom; hr = IDXGIFactory4_CreateSwapChainForHwnd(factory, queue, window, &swapchain_desc, NULL, NULL, &swapchain); - ok(hr == E_ACCESSDENIED, "Got unexpected hr %#lx.\n", hr); + ok(hr == E_ACCESSDENIED || broken(hr == E_OUTOFMEMORY /* win10 1709 */), + "Got unexpected hr %#lx.\n", hr); IDXGIFactory4_Release(factory); destroy_test_context(&context); -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/1961
v3: Make the Windows 10 reference more explicit in the comment. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/1961#note_20921
Hmmm. I have no record of the qasf:asfreader failures in pipeline 6423 ever happening during WineTest but I still doubt it's related to this MR. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/1961#note_20932
participants (2)
-
Francois Gouget -
Francois Gouget (@fgouget)