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

Both variants are observed on different computers with Win10.

Signed-off-by: Paul Gofman <pgofman@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Paul Gofman 2021-05-27 13:31:57 +03:00 committed by Alexandre Julliard
parent 5f4ee79149
commit eefce9dcb9
1 changed files with 1 additions and 2 deletions

View File

@ -957,8 +957,7 @@ static void test_user_shared_data(void)
for (i = 0; i < ARRAY_SIZE(feature_sizes); ++i)
{
ok(xstate.AllFeatures[i] == feature_sizes[i]
|| broken(!xstate.AllFeatures[i]) /* win10 on Testbot VMs */,
ok(xstate.AllFeatures[i] == feature_sizes[i] || !xstate.AllFeatures[i],
"Got unexpected AllFeatures[%u] %u, expected %u.\n", 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,