ddraw/tests: Skip the ddraw7 primary palette test if 8 bpp mode doesn't work.

This commit is contained in:
Stefan Dösinger 2014-04-28 15:21:55 +02:00 committed by Alexandre Julliard
parent 7178675741
commit 8d1b66bee4
1 changed files with 7 additions and 1 deletions

View File

@ -5598,7 +5598,13 @@ static void test_primary_palette(void)
0, 0, 640, 480, 0, 0, 0, 0);
ddraw = create_ddraw();
ok(!!ddraw, "Failed to create a ddraw object.\n");
hr = IDirectDraw7_SetDisplayMode(ddraw, 640, 480, 8, 0, 0);
if (FAILED(hr = IDirectDraw7_SetDisplayMode(ddraw, 640, 480, 8, 0, 0)))
{
win_skip("Failed to set 8 bpp display mode, skipping test.\n");
IDirectDraw7_Release(ddraw);
DestroyWindow(window);
return;
}
ok(SUCCEEDED(hr), "Failed to set display mode, hr %#x.\n", hr);
hr = IDirectDraw7_SetCooperativeLevel(ddraw, window, DDSCL_EXCLUSIVE | DDSCL_FULLSCREEN);
ok(SUCCEEDED(hr), "Failed to set cooperative level, hr %#x.\n", hr);