Module: wine Branch: master Commit: 38abbe3d607f03c3b70e06897bc4c5f7059f2c71 URL: http://source.winehq.org/git/wine.git/?a=commit;h=38abbe3d607f03c3b70e06897b...
Author: Detlef Riekenberg wine.dev@web.de Date: Mon Oct 13 01:33:13 2008 +0200
d3d8/tests: Fix test on win9x with broken driver.
---
dlls/d3d8/tests/device.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/dlls/d3d8/tests/device.c b/dlls/d3d8/tests/device.c index fbbdf1d..439267d 100644 --- a/dlls/d3d8/tests/device.c +++ b/dlls/d3d8/tests/device.c @@ -1190,7 +1190,8 @@ static void test_lights(void) hr = IDirect3DDevice8_LightEnable(device, i, TRUE); ok(hr == D3D_OK, "Enabling light %u failed with %08x\n", i, hr); hr = IDirect3DDevice8_GetLightEnable(device, i, &enabled); - ok(hr == D3D_OK, "GetLightEnable on light %u failed with %08x\n", i, hr); + ok(hr == D3D_OK || broken(hr == D3DERR_INVALIDCALL), + "GetLightEnable on light %u failed with %08x\n", i, hr); ok(enabled, "Light %d is %s\n", i, enabled ? "enabled" : "disabled"); }