mfplat/tests: Increase wait timeout to help with intermittent test failures.
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
26a257956a
commit
af55f88d2a
|
@ -2066,7 +2066,7 @@ static HRESULT WINAPI testcallback_Invoke(IMFAsyncCallback *iface, IMFAsyncResul
|
|||
state = IMFAsyncResult_GetStateNoAddRef(result);
|
||||
if (state && SUCCEEDED(IUnknown_QueryInterface(state, &IID_IMFMediaEventQueue, (void **)&queue)))
|
||||
{
|
||||
IMFMediaEvent *event;
|
||||
IMFMediaEvent *event = NULL, *event2;
|
||||
|
||||
if (is_win8_plus)
|
||||
{
|
||||
|
@ -2079,9 +2079,10 @@ static HRESULT WINAPI testcallback_Invoke(IMFAsyncCallback *iface, IMFAsyncResul
|
|||
hr = IMFMediaEventQueue_EndGetEvent(queue, result, &event);
|
||||
ok(hr == S_OK, "Failed to finalize GetEvent, hr %#x.\n", hr);
|
||||
|
||||
hr = IMFMediaEventQueue_EndGetEvent(queue, result, &event);
|
||||
hr = IMFMediaEventQueue_EndGetEvent(queue, result, &event2);
|
||||
ok(hr == E_FAIL, "Unexpected result, hr %#x.\n", hr);
|
||||
|
||||
if (event)
|
||||
IMFMediaEvent_Release(event);
|
||||
}
|
||||
|
||||
|
@ -2719,7 +2720,7 @@ static void test_event_queue(void)
|
|||
hr = IMFMediaEventQueue_QueueEvent(queue, event);
|
||||
ok(hr == S_OK, "Failed to queue event, hr %#x.\n", hr);
|
||||
|
||||
ret = WaitForSingleObject(callback.event, 100);
|
||||
ret = WaitForSingleObject(callback.event, 500);
|
||||
ok(ret == WAIT_OBJECT_0, "Unexpected return value %#x.\n", ret);
|
||||
|
||||
CloseHandle(callback.event);
|
||||
|
|
Loading…
Reference in New Issue