Commit eefce9dc authored by Paul Gofman's avatar Paul Gofman Committed by Alexandre Julliard

ntdll/tests: Don't consider zero 'AllFeatures' value in USD broken.

Both variants are observed on different computers with Win10. Signed-off-by: 's avatarPaul Gofman <pgofman@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 5f4ee791
...@@ -957,8 +957,7 @@ static void test_user_shared_data(void) ...@@ -957,8 +957,7 @@ static void test_user_shared_data(void)
for (i = 0; i < ARRAY_SIZE(feature_sizes); ++i) for (i = 0; i < ARRAY_SIZE(feature_sizes); ++i)
{ {
ok(xstate.AllFeatures[i] == feature_sizes[i] ok(xstate.AllFeatures[i] == feature_sizes[i] || !xstate.AllFeatures[i],
|| broken(!xstate.AllFeatures[i]) /* win10 on Testbot VMs */,
"Got unexpected AllFeatures[%u] %u, expected %u.\n", i, "Got unexpected AllFeatures[%u] %u, expected %u.\n", i,
xstate.AllFeatures[i], feature_sizes[i]); xstate.AllFeatures[i], feature_sizes[i]);
ok(xstate.Features[i].Size == feature_sizes[i], "Got unexpected Features[%u].Size %u, expected %u.\n", i, ok(xstate.Features[i].Size == feature_sizes[i], "Got unexpected Features[%u].Size %u, expected %u.\n", i,
......
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