Commit fe75e958 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

mmdevapi/tests: Fix test on some 2k8 and mark those errors broken.

parent 79f16188
......@@ -208,8 +208,9 @@ static void test_audioclient(IAudioClient *ac)
hr = IAudioClient_SetEventHandle(ac, handle);
ok(hr == AUDCLNT_E_EVENTHANDLE_NOT_EXPECTED ||
hr == HRESULT_FROM_WIN32(ERROR_INVALID_NAME) ||
hr == HRESULT_FROM_WIN32(ERROR_BAD_PATHNAME) /* Some Vista */
broken(hr == HRESULT_FROM_WIN32(ERROR_INVALID_NAME)) ||
broken(hr == HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND)) /* Some 2k8 */ ||
broken(hr == HRESULT_FROM_WIN32(ERROR_BAD_PATHNAME)) /* Some Vista */
, "SetEventHandle returns %08x\n", hr);
hr = IAudioClient_Reset(ac);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment