Killsquad sends a MESessionClose at various times depending on user input. It always expects a MESessionClosed event and will wait indefinitely if not received. There are currently a number of scenarios where we don't report the MESessionClose event. This MR attempts to fix that.
From: Brendan McGrath bmcgrath@codeweavers.com
--- dlls/mf/tests/mf.c | 89 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 89 insertions(+)
diff --git a/dlls/mf/tests/mf.c b/dlls/mf/tests/mf.c index 5959905a278..5d0833e155c 100644 --- a/dlls/mf/tests/mf.c +++ b/dlls/mf/tests/mf.c @@ -6247,6 +6247,8 @@ static void test_media_session_Start(void) ok(hr == S_OK, "Unexpected hr %#lx.\n", hr); hr = IMFMediaSession_Close(session); ok(hr == S_OK, "Unexpected hr %#lx.\n", hr); + hr = wait_media_event(session, callback, MESessionClosed, 1000, &propvar); + ok(hr == S_OK, "Unexpected hr %#lx.\n", hr);
/* Media session is shut down */ hr = IMFMediaSource_Shutdown(source); @@ -6329,6 +6331,9 @@ static void test_media_session_Start(void) ok(hr == S_OK, "Unexpected hr %#lx.\n", hr); hr = IMFMediaSession_Close(session); ok(hr == S_OK, "Unexpected hr %#lx.\n", hr); + hr = wait_media_event(session, callback, MESessionClosed, 1000, &propvar); + todo_wine + ok(hr == S_OK, "Unexpected hr %#lx.\n", hr); hr = IMFMediaSession_Shutdown(session); ok(hr == S_OK, "Unexpected hr %#lx.\n", hr); hr = IMFMediaSource_Shutdown(source); @@ -6425,6 +6430,89 @@ static void test_media_session_Start(void) ok(hr == S_OK, "Unexpected hr %#lx.\n", hr); }
+static void test_media_session_Close(void) +{ + media_type_desc video_rgb32_desc = + { + ATTR_GUID(MF_MT_MAJOR_TYPE, MFMediaType_Video), + ATTR_GUID(MF_MT_SUBTYPE, MFVideoFormat_RGB32), + }; + struct test_grabber_callback *grabber_callback; + IMFPresentationClock *presentation_clock; + IMFActivate *sink_activate; + IMFAsyncCallback *callback; + IMFMediaType *output_type; + IMFMediaSession *session; + IMFMediaSource *source; + IMFTopology *topology; + PROPVARIANT propvar; + IMFClock *clock; + UINT64 duration; + HRESULT hr; + + hr = MFStartup(MF_VERSION, MFSTARTUP_FULL); + ok(hr == S_OK, "Failed to start up, hr %#lx.\n", hr); + + if (!(source = create_media_source(L"test.mp4", L"video/mp4"))) + { + todo_wine /* Gitlab CI Debian runner */ + win_skip("MP4 media source is not supported, skipping tests.\n"); + MFShutdown(); + return; + } + + grabber_callback = impl_from_IMFSampleGrabberSinkCallback(create_test_grabber_callback()); + hr = MFCreateMediaType(&output_type); + ok(hr == S_OK, "Unexpected hr %#lx.\n", hr); + init_media_type(output_type, video_rgb32_desc, -1); + hr = MFCreateSampleGrabberSinkActivate(output_type, &grabber_callback->IMFSampleGrabberSinkCallback_iface, &sink_activate); + ok(hr == S_OK, "Failed to create grabber sink, hr %#lx.\n", hr); + IMFMediaType_Release(output_type); + + hr = MFCreateMediaSession(NULL, &session); + ok(hr == S_OK, "Unexpected hr %#lx.\n", hr); + + topology = create_test_topology(source, sink_activate, &duration); + hr = IMFMediaSession_SetTopology(session, 0, topology); + ok(hr == S_OK, "Unexpected hr %#lx.\n", hr); + IMFTopology_Release(topology); + + hr = IMFMediaSession_GetClock(session, &clock); + ok(hr == S_OK, "Unexpected hr %#lx.\n", hr); + hr = IMFClock_QueryInterface(clock, &IID_IMFPresentationClock, (void **)&presentation_clock); + ok(hr == S_OK, "Unexpected hr %#lx.\n", hr); + IMFClock_Release(clock); + + propvar.vt = VT_EMPTY; + hr = IMFMediaSession_Start(session, &GUID_NULL, &propvar); + ok(hr == S_OK, "Unexpected hr %#lx.\n", hr); + callback = create_test_callback(TRUE); + hr = wait_media_event(session, callback, MESessionStarted, 5000, &propvar); + ok(hr == S_OK, "Unexpected hr %#lx.\n", hr); + + hr = IMFMediaSession_Close(session); + ok(hr == S_OK, "Unexpected hr %#lx.\n", hr); + hr = IMFMediaSource_Shutdown(source); + ok(hr == S_OK, "Unexpected hr %#lx.\n", hr); + hr = wait_media_event_until_blocking(session, callback, MESessionClosed, 5000, &propvar); + todo_wine + ok(hr == MF_E_SHUTDOWN, "Unexpected hr %#lx.\n", hr); + + hr = IMFMediaSession_Shutdown(session); + ok(hr == S_OK, "Unexpected hr %#lx.\n", hr); + + IMFPresentationClock_Release(presentation_clock); + IMFAsyncCallback_Release(callback); + IMFMediaSession_Release(session); + IMFActivate_ShutdownObject(sink_activate); + IMFActivate_Release(sink_activate); + IMFSampleGrabberSinkCallback_Release(&grabber_callback->IMFSampleGrabberSinkCallback_iface); + IMFMediaSource_Release(source); + + hr = MFShutdown(); + ok(hr == S_OK, "Unexpected hr %#lx.\n", hr); +} + START_TEST(mf) { init_functions(); @@ -6458,4 +6546,5 @@ START_TEST(mf) test_mpeg4_media_sink(); test_MFCreateSequencerSegmentOffset(); test_media_session_Start(); + test_media_session_Close(); }
From: Brendan McGrath bmcgrath@codeweavers.com
Fixes the missing MESessionClosed event in this scenario. --- dlls/mf/session.c | 1 + dlls/mf/tests/mf.c | 1 - 2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/mf/session.c b/dlls/mf/session.c index 865399488ae..99e7b0872fb 100644 --- a/dlls/mf/session.c +++ b/dlls/mf/session.c @@ -1274,6 +1274,7 @@ static void session_close(struct media_session *session) switch (session->state) { case SESSION_STATE_STOPPED: + case SESSION_STATE_RESTARTING_SOURCES: hr = session_finalize_sinks(session); break; case SESSION_STATE_STARTED: diff --git a/dlls/mf/tests/mf.c b/dlls/mf/tests/mf.c index 5d0833e155c..231b26e36af 100644 --- a/dlls/mf/tests/mf.c +++ b/dlls/mf/tests/mf.c @@ -6332,7 +6332,6 @@ static void test_media_session_Start(void) hr = IMFMediaSession_Close(session); ok(hr == S_OK, "Unexpected hr %#lx.\n", hr); hr = wait_media_event(session, callback, MESessionClosed, 1000, &propvar); - todo_wine ok(hr == S_OK, "Unexpected hr %#lx.\n", hr); hr = IMFMediaSession_Shutdown(session); ok(hr == S_OK, "Unexpected hr %#lx.\n", hr);
From: Brendan McGrath bmcgrath@codeweavers.com
Fixes the missing MESessionClosed event in this scenario. --- dlls/mf/session.c | 9 ++++++++- dlls/mf/tests/mf.c | 1 - 2 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/dlls/mf/session.c b/dlls/mf/session.c index 99e7b0872fb..dc9578ce86b 100644 --- a/dlls/mf/session.c +++ b/dlls/mf/session.c @@ -3193,8 +3193,15 @@ static void session_set_sink_stream_state(struct media_session *session, IMFStre break; }
- if (session->presentation.flags & SESSION_FLAG_END_OF_PRESENTATION || FAILED(hr)) + if (session->presentation.flags & SESSION_FLAG_END_OF_PRESENTATION) session_set_stopped(session, hr); + else if (FAILED(hr)) + { + if (session->presentation.flags & SESSION_FLAG_FINALIZE_SINKS) + session_set_closed(session, hr); + else + session_set_stopped(session, hr); + }
break; default: diff --git a/dlls/mf/tests/mf.c b/dlls/mf/tests/mf.c index 231b26e36af..570efa2078f 100644 --- a/dlls/mf/tests/mf.c +++ b/dlls/mf/tests/mf.c @@ -6494,7 +6494,6 @@ static void test_media_session_Close(void) hr = IMFMediaSource_Shutdown(source); ok(hr == S_OK, "Unexpected hr %#lx.\n", hr); hr = wait_media_event_until_blocking(session, callback, MESessionClosed, 5000, &propvar); - todo_wine ok(hr == MF_E_SHUTDOWN, "Unexpected hr %#lx.\n", hr);
hr = IMFMediaSession_Shutdown(session);
From: Brendan McGrath bmcgrath@codeweavers.com
Fixes missing Started, Stopped or Closed events during this scenario --- dlls/mf/session.c | 132 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 113 insertions(+), 19 deletions(-)
diff --git a/dlls/mf/session.c b/dlls/mf/session.c index dc9578ce86b..fed72495bc1 100644 --- a/dlls/mf/session.c +++ b/dlls/mf/session.c @@ -230,7 +230,6 @@ struct media_session IMFTopologyNodeAttributeEditor IMFTopologyNodeAttributeEditor_iface; IMFAsyncCallback commands_callback; IMFAsyncCallback sa_ready_callback; - IMFAsyncCallback events_callback; IMFAsyncCallback sink_finalizer_callback; LONG refcount; IMFMediaEventQueue *event_queue; @@ -278,11 +277,6 @@ static struct media_session *impl_from_sa_ready_callback_IMFAsyncCallback(IMFAsy return CONTAINING_RECORD(iface, struct media_session, sa_ready_callback); }
-static struct media_session *impl_from_events_callback_IMFAsyncCallback(IMFAsyncCallback *iface) -{ - return CONTAINING_RECORD(iface, struct media_session, events_callback); -} - static struct media_session *impl_from_sink_finalizer_callback_IMFAsyncCallback(IMFAsyncCallback *iface) { return CONTAINING_RECORD(iface, struct media_session, sink_finalizer_callback); @@ -966,6 +960,32 @@ static void session_command_complete_with_event(struct media_session *session, M session_command_complete(session); }
+struct events_callback +{ + IMFAsyncCallback IMFAsyncCallback_iface; + LONG refcount; + BOOL awaiting_event; + struct media_session *session; + enum MF_TOPOLOGY_TYPE type; +}; + +static struct events_callback* events_callback_create(struct media_session *session, enum MF_TOPOLOGY_TYPE type); + +static HRESULT events_callback_begin(IMFMediaEventGenerator *event_generator, + struct media_session *session, enum MF_TOPOLOGY_TYPE type, IUnknown *punkState) +{ + HRESULT hr; + struct events_callback *callback = events_callback_create(session, type); + callback->awaiting_event = TRUE; + hr = IMFMediaEventGenerator_BeginGetEvent(event_generator, &callback->IMFAsyncCallback_iface, punkState); + if (FAILED(hr)) + callback->awaiting_event = FALSE; + + IMFAsyncCallback_Release(&callback->IMFAsyncCallback_iface); + + return hr; +} + static HRESULT session_subscribe_sources(struct media_session *session) { struct media_source *source; @@ -976,8 +996,8 @@ static HRESULT session_subscribe_sources(struct media_session *session)
LIST_FOR_EACH_ENTRY(source, &session->presentation.sources, struct media_source, entry) { - if (FAILED(hr = IMFMediaSource_BeginGetEvent(source->source, &session->events_callback, - source->object))) + if (FAILED(hr = events_callback_begin((IMFMediaEventGenerator*)source->source, + session, MF_TOPOLOGY_SOURCESTREAM_NODE, source->object))) { WARN("Failed to subscribe to source events, hr %#lx.\n", hr); return hr; @@ -1425,8 +1445,8 @@ static void session_set_presentation_clock(struct media_session *session) if (node->type != MF_TOPOLOGY_OUTPUT_NODE) continue;
- if (FAILED(hr = IMFStreamSink_BeginGetEvent(node->object.sink_stream, &session->events_callback, - node->object.object))) + if (FAILED(hr = events_callback_begin((IMFMediaEventGenerator*)node->object.sink_stream, + session, MF_TOPOLOGY_OUTPUT_NODE, node->object.object))) { WARN("Failed to subscribe to stream sink events, hr %#lx.\n", hr); } @@ -1440,8 +1460,8 @@ static void session_set_presentation_clock(struct media_session *session)
LIST_FOR_EACH_ENTRY(sink, &session->presentation.sinks, struct media_sink, entry) { - if (sink->event_generator && FAILED(hr = IMFMediaEventGenerator_BeginGetEvent(sink->event_generator, - &session->events_callback, (IUnknown *)sink->event_generator))) + if (sink->event_generator && FAILED(hr = events_callback_begin((IMFMediaEventGenerator*)sink->event_generator, + session, MF_TOPOLOGY_OUTPUT_NODE, (IUnknown *)sink->event_generator))) { WARN("Failed to subscribe to sink events, hr %#lx.\n", hr); } @@ -2812,6 +2832,11 @@ static const IMFAsyncCallbackVtbl session_sa_ready_callback_vtbl = session_sa_ready_callback_Invoke, };
+static inline struct events_callback *impl_from_events_callback_IMFAsyncCallback(IMFAsyncCallback *iface) +{ + return CONTAINING_RECORD(iface, struct events_callback, IMFAsyncCallback_iface); +} + static HRESULT WINAPI session_events_callback_QueryInterface(IMFAsyncCallback *iface, REFIID riid, void **obj) { if (IsEqualIID(riid, &IID_IMFAsyncCallback) || @@ -2829,14 +2854,65 @@ static HRESULT WINAPI session_events_callback_QueryInterface(IMFAsyncCallback *i
static ULONG WINAPI session_events_callback_AddRef(IMFAsyncCallback *iface) { - struct media_session *session = impl_from_events_callback_IMFAsyncCallback(iface); - return IMFMediaSession_AddRef(&session->IMFMediaSession_iface); + struct events_callback *callback = impl_from_events_callback_IMFAsyncCallback(iface); + ULONG refcount = InterlockedIncrement(&callback->refcount); + + TRACE("%p, refcount %lu.\n", iface, refcount); + + return refcount; +} + +static void session_events_handle_shutdown(struct media_session *session, enum MF_TOPOLOGY_TYPE type) +{ + TRACE("session %p state %d type %d.\n", session, session->state, type); + + switch(session->state) + { + case SESSION_STATE_STARTING_SOURCES: + if (type == MF_TOPOLOGY_SOURCESTREAM_NODE) + session_command_complete_with_event(session, MESessionStarted, MF_E_SHUTDOWN, NULL); + break; + case SESSION_STATE_PREROLLING_SINKS: + case SESSION_STATE_STARTING_SINKS: + if (type == MF_TOPOLOGY_OUTPUT_NODE) + session_command_complete_with_event(session, MESessionStarted, MF_E_SHUTDOWN, NULL); + break; + + case SESSION_STATE_STOPPING_SINKS: + if (type == MF_TOPOLOGY_OUTPUT_NODE) + session_command_complete_with_event(session, (session->presentation.flags & SESSION_FLAG_FINALIZE_SINKS) ? MESessionClosed : MESessionStopped, MF_E_SHUTDOWN, NULL); + break; + case SESSION_STATE_STOPPING_SOURCES: + if (type == MF_TOPOLOGY_SOURCESTREAM_NODE) + session_command_complete_with_event(session, (session->presentation.flags & SESSION_FLAG_FINALIZE_SINKS) ? MESessionClosed : MESessionStopped, MF_E_SHUTDOWN, NULL); + break; + + default: + FIXME("unhandled session state %d %d %p\n", session->state, type, session); + break; + } }
static ULONG WINAPI session_events_callback_Release(IMFAsyncCallback *iface) { - struct media_session *session = impl_from_events_callback_IMFAsyncCallback(iface); - return IMFMediaSession_Release(&session->IMFMediaSession_iface); + struct events_callback *callback = impl_from_events_callback_IMFAsyncCallback(iface); + ULONG refcount = InterlockedDecrement(&callback->refcount); + + TRACE("%p, refcount %lu.\n", iface, refcount); + + if (!refcount) + { + struct media_session *session = callback->session; + if (callback->awaiting_event) + { + WARN("Shutdown whilst waiting for event %p\n", session); + session_events_handle_shutdown(session, callback->type); + } + IMFMediaSession_Release(&session->IMFMediaSession_iface); + free(callback); + } + + return refcount; }
static HRESULT WINAPI session_events_callback_GetParameters(IMFAsyncCallback *iface, DWORD *flags, DWORD *queue) @@ -4008,7 +4084,8 @@ static void session_sink_stream_scrub_complete(struct media_session *session, IM
static HRESULT WINAPI session_events_callback_Invoke(IMFAsyncCallback *iface, IMFAsyncResult *result) { - struct media_session *session = impl_from_events_callback_IMFAsyncCallback(iface); + struct events_callback *callback = impl_from_events_callback_IMFAsyncCallback(iface); + struct media_session *session = callback->session; IMFMediaEventGenerator *event_source; IMFMediaEvent *event = NULL; MediaEventType event_type; @@ -4018,6 +4095,8 @@ static HRESULT WINAPI session_events_callback_Invoke(IMFAsyncCallback *iface, IM PROPVARIANT value; HRESULT hr;
+ callback->awaiting_event = FALSE; + if (FAILED(hr = IMFAsyncResult_GetState(result, (IUnknown **)&event_source))) return hr;
@@ -4115,7 +4194,8 @@ static HRESULT WINAPI session_events_callback_Invoke(IMFAsyncCallback *iface, IM
EnterCriticalSection(&session->cs); if (SUCCEEDED(hr = session_add_media_stream(session, source, stream))) - hr = IMFMediaStream_BeginGetEvent(stream, &session->events_callback, (IUnknown *)stream); + hr = events_callback_begin((IMFMediaEventGenerator*)stream, + session, MF_TOPOLOGY_SOURCESTREAM_NODE, (IUnknown *)stream); LeaveCriticalSection(&session->cs);
IMFMediaSource_Release(source); @@ -4220,9 +4300,12 @@ static HRESULT WINAPI session_events_callback_Invoke(IMFAsyncCallback *iface, IM
failed:
+ callback->awaiting_event = TRUE; if (FAILED(hr = IMFMediaEventGenerator_BeginGetEvent(event_source, iface, (IUnknown *)event_source))) { + callback->awaiting_event = FALSE; WARN("Failed to re-subscribe, hr %#lx.\n", hr); + session_events_handle_shutdown(session, callback->type); IMFMediaEventQueue_QueueEvent(session->event_queue, event); }
@@ -4243,6 +4326,18 @@ static const IMFAsyncCallbackVtbl session_events_callback_vtbl = session_events_callback_Invoke, };
+static struct events_callback* events_callback_create(struct media_session *session, enum MF_TOPOLOGY_TYPE type) +{ + struct events_callback *callback = malloc(sizeof(*callback)); + callback->IMFAsyncCallback_iface.lpVtbl = &session_events_callback_vtbl; + callback->refcount = 1; + callback->awaiting_event = FALSE; + callback->session = session; + callback->type = type; + IMFMediaSession_AddRef(&session->IMFMediaSession_iface); + return callback; +} + static HRESULT WINAPI session_sink_finalizer_callback_QueryInterface(IMFAsyncCallback *iface, REFIID riid, void **obj) { if (IsEqualIID(riid, &IID_IMFAsyncCallback) || @@ -4591,7 +4686,6 @@ HRESULT WINAPI MFCreateMediaSession(IMFAttributes *config, IMFMediaSession **ses object->IMFTopologyNodeAttributeEditor_iface.lpVtbl = &node_attribute_editor_vtbl; object->commands_callback.lpVtbl = &session_commands_callback_vtbl; object->sa_ready_callback.lpVtbl = &session_sa_ready_callback_vtbl; - object->events_callback.lpVtbl = &session_events_callback_vtbl; object->sink_finalizer_callback.lpVtbl = &session_sink_finalizer_callback_vtbl; object->refcount = 1; list_init(&object->topologies);
Hi,
It looks like your patch introduced the new failures shown below. Please investigate and fix them before resubmitting your patch. If they are not new, fixing them anyway would help a lot. Otherwise please ask for the known failures list to be updated.
The tests also ran into some preexisting test failures. If you know how to fix them that would be helpful. See the TestBot job for the details:
The full results can be found at: https://testbot.winehq.org/JobDetails.pl?Key=145394
Your paranoid android.
=== w7u_2qxl (32 bit report) ===
mf: mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf: Timeout
=== w7u_adm (32 bit report) ===
mf: mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf: Timeout
=== w7u_el (32 bit report) ===
mf: mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf: Timeout
=== w7pro64 (64 bit report) ===
mf: mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf.c:6334: Test failed: WaitForSingleObject returned 258 mf.c:6334: Test failed: Unexpected hr 0xd36d8. mf: Timeout