Commit 12f82745 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

dinput8/tests: Make use of todo_wine_if().

parent a516c0aa
...@@ -99,12 +99,7 @@ static void test_preinitialization(void) ...@@ -99,12 +99,7 @@ static void test_preinitialization(void)
enum_devices_tests[i].lpCallback, enum_devices_tests[i].lpCallback,
NULL, NULL,
enum_devices_tests[i].dwFlags); enum_devices_tests[i].dwFlags);
if (enum_devices_tests[i].todo) todo_wine_if(enum_devices_tests[i].todo)
{
todo_wine
ok(hr == enum_devices_tests[i].expected_hr, "[%d] IDirectInput8_EnumDevice returned 0x%08x\n", i, hr);
}
else
ok(hr == enum_devices_tests[i].expected_hr, "[%d] IDirectInput8_EnumDevice returned 0x%08x\n", i, hr); ok(hr == enum_devices_tests[i].expected_hr, "[%d] IDirectInput8_EnumDevice returned 0x%08x\n", i, hr);
} }
......
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