Commit 9b38ae99 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

d3d12/tests: Don't check the refcount after releasing the dxgi adapter.

The refcount is >= 1 on Windows 10 1709 and 1809 but 0 on more recent versions. So its value is not really important. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=54299
parent aabdb154
......@@ -884,8 +884,7 @@ static void test_create_device(void)
ok(refcount == 1, "Got unexpected refcount %lu.\n", refcount);
hr = D3D12CreateDevice((IUnknown *)adapter, D3D_FEATURE_LEVEL_11_0, &IID_ID3D12Device, (void **)&device);
ok(hr == S_OK, "Got unexpected hr %#lx.\n", hr);
refcount = IDXGIAdapter_Release(adapter);
ok(refcount >= 1, "Got unexpected refcount %lu.\n", refcount);
IDXGIAdapter_Release(adapter);
adapter = NULL;
luid = ID3D12Device_GetAdapterLuid(device);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment