Paul Gofman : ntdll/tests: Don't consider zero 'AllFeatures' value in USD broken.
Module: wine Branch: master Commit: eefce9dcb9aa270c3ee6933205d20f53de59bdcd URL: https://source.winehq.org/git/wine.git/?a=commit;h=eefce9dcb9aa270c3ee693320... Author: Paul Gofman <pgofman(a)codeweavers.com> Date: Thu May 27 13:31:57 2021 +0300 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(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/ntdll/tests/virtual.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dlls/ntdll/tests/virtual.c b/dlls/ntdll/tests/virtual.c index 22ee7f06ac7..e657a424fcd 100644 --- a/dlls/ntdll/tests/virtual.c +++ b/dlls/ntdll/tests/virtual.c @@ -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,
participants (1)
-
Alexandre Julliard