Commit 7a80e976 authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

mmdevapi/tests: Fix test failure on some Vista boxes.

parent c9f2007e
......@@ -200,7 +200,8 @@ 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_INVALID_NAME) ||
hr == HRESULT_FROM_WIN32(ERROR_BAD_PATHNAME) /* Some Vista */
, "SetEventHandle returns %08x\n", hr);
CloseHandle(handle);
......
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