diff --git a/rostests/winetests/advapi32/service.c b/rostests/winetests/advapi32/service.c index 605f3842de7..aae8c6ea9b1 100644 --- a/rostests/winetests/advapi32/service.c +++ b/rostests/winetests/advapi32/service.c @@ -1323,11 +1323,16 @@ static void test_enum_svc(void) } HeapFree(GetProcessHeap(), 0, services); +#if 0 + /* These tests don't make sense on a real system because no test can determine + * how many service should be active or inactive. + */ todo_wine { ok(servicecountactive == 0, "Active services mismatch %u\n", servicecountactive); ok(servicecountinactive == 0, "Inactive services mismatch %u\n", servicecountinactive); } +#endif CloseServiceHandle(scm_handle); @@ -1681,8 +1686,13 @@ static void test_enum_svc(void) } HeapFree(GetProcessHeap(), 0, exservices); +#if 0 + /* These tests don't make sense on a real system because no test can determine + * how many service should be active or inactive. + */ ok(servicecountactive == 0, "Active services mismatch %u\n", servicecountactive); ok(servicecountinactive == 0, "Inactive services mismatch %u\n", servicecountinactive); +#endif CloseServiceHandle(scm_handle); }