mstask/tests: Skip some tests when the service is not running.

oldstable
Detlef Riekenberg 2009-12-22 14:01:22 +01:00 committed by Alexandre Julliard
parent 2d85d5c235
commit dc28680847
1 changed files with 1 additions and 1 deletions

View File

@ -427,7 +427,7 @@ static void test_SetAccountInformation_GetAccountInformation(void)
/* WinXP returns HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND): 0x80070002 but
* Win2K returns SCHED_E_CANNOT_OPEN_TASK: 0x8004130d
* Win9x doesn't support security services */
if (hres == SCHED_E_NO_SECURITY_SERVICES)
if (hres == SCHED_E_NO_SECURITY_SERVICES || hres == SCHED_E_SERVICE_NOT_RUNNING)
{
win_skip("Security services are not supported\n");
cleanup_task();