From: Alex Henrie Subject: [PATCH 3/4] ddraw/tests: Drop ddraw4 test workarounds for Windows <= 2000 Message-Id: <20220117065809.442767-3-alexhenrie24@gmail.com> Date: Sun, 16 Jan 2022 23:57:48 -0700 In-Reply-To: <20220117065809.442767-1-alexhenrie24@gmail.com> References: <20220117065809.442767-1-alexhenrie24@gmail.com> Signed-off-by: Alex Henrie --- dlls/ddraw/tests/ddraw4.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/dlls/ddraw/tests/ddraw4.c b/dlls/ddraw/tests/ddraw4.c index ce2333d93f0..2ec0f062201 100644 --- a/dlls/ddraw/tests/ddraw4.c +++ b/dlls/ddraw/tests/ddraw4.c @@ -969,15 +969,6 @@ static void test_coop_level_create_device_window(void) device_window = FindWindowA("DirectDrawDeviceWnd", "DirectDrawDeviceWnd"); ok(!device_window, "Unexpected device window found.\n"); - /* Windows versions before 98 / NT5 don't support DDSCL_CREATEDEVICEWINDOW. */ - if (broken(hr == DDERR_INVALIDPARAMS)) - { - win_skip("DDSCL_CREATEDEVICEWINDOW not supported, skipping test.\n"); - IDirectDraw4_Release(ddraw); - DestroyWindow(focus_window); - return; - } - hr = IDirectDraw4_SetCooperativeLevel(ddraw, NULL, DDSCL_NORMAL); ok(hr == DD_OK, "Got unexpected hr %#x.\n", hr); device_window = FindWindowA("DirectDrawDeviceWnd", "DirectDrawDeviceWnd"); -- 2.34.1