Commit bdb9a9e4 authored by Ken Thomases's avatar Ken Thomases Committed by Alexandre Julliard

d3d8/tests: Ignore broken CheckDeviceType() behavior on 64-bit Windows 8.

parent e41a5422
......@@ -1053,7 +1053,7 @@ static void test_display_formats(void)
hr = IDirect3D8_CheckDeviceType(d3d8, D3DADAPTER_DEFAULT, device_type,
formats[display].format, formats[backbuffer].format, windowed);
ok(SUCCEEDED(hr) == should_pass,
ok(SUCCEEDED(hr) == should_pass || broken(SUCCEEDED(hr) && !has_modes) /* Win8 64-bit */,
"Got unexpected hr %#x for %s / %s, windowed %#x, should_pass %#x.\n",
hr, formats[display].name, formats[backbuffer].name, windowed, should_pass);
}
......
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