Commit 1b78c229 authored by Connor McAdams's avatar Connor McAdams Committed by Alexandre Julliard

user32/tests: Fix dump_sequence winevent_hook_todo handling.

parent ddf8c927
......@@ -2665,7 +2665,8 @@ static void dump_sequence(const struct message *expected, const char *context, c
}
}
/* silently drop winevent messages if there is no support for them */
else if ((expected->flags & optional) || ((expected->flags & winevent_hook) && !hEvent_hook))
else if ((expected->flags & optional) || ((expected->flags & winevent_hook) && !hEvent_hook) ||
((expected->flags & winevent_hook_todo) && !strcmp(winetest_platform, "wine")))
expected++;
else
{
......
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