mstask/tests: Skip some tests when the service is not running.
This commit is contained in:
parent
2d85d5c235
commit
dc28680847
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue