tests: Add test for ID3D12Device_GetNodeCount().

This commit is contained in:
Józef Kucia 2016-09-21 14:51:48 +02:00
parent aea273550a
commit f9af61a1dc
1 changed files with 21 additions and 0 deletions

View File

@ -115,6 +115,26 @@ static void test_create_device(void)
ok(hr == E_INVALIDARG, "D3D12CreateDevice failed, hr %#x.\n", hr);
}
static void test_node_count(void)
{
ID3D12Device *device;
UINT node_count;
ULONG refcount;
if (!(device = create_device()))
{
skip("Failed to create device.\n");
return;
}
node_count = ID3D12Device_GetNodeCount(device);
trace("Node count: %u.\n", node_count);
ok(1 <= node_count && node_count <= 32, "Got unexpected node count %u.\n", node_count);
refcount = ID3D12Device_Release(device);
ok(!refcount, "ID3D12Device has %u references left.\n", (unsigned int)refcount);
}
START_TEST(d3d12)
{
ID3D12Debug *debug;
@ -126,4 +146,5 @@ START_TEST(d3d12)
}
test_create_device();
test_node_count();
}