Commit c1a15b75 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

urlmon: Skip reported_url tests when binding to object.

This limits the scope of http://source.winehq.org/git/wine.git/commitdiff/259cd7933612abdef0f88f446589ec489176ce7d to fix random test failures. This makes the original test questionable, so if we ever see it failing again, we should simply revert it.
parent 76997f1a
......@@ -933,7 +933,9 @@ static HRESULT WINAPI Protocol_Continue(IInternetProtocol *iface,
CHECK_EXPECT(Continue);
ok(GetCurrentThreadId() == thread_id, "wrong thread %d\n", GetCurrentThreadId());
ok(reported_url && !lstrcmpW(reported_url, current_url), "wrong url %s\n", wine_dbgstr_w(reported_url));
if(!bind_to_object)
ok(reported_url && !lstrcmpW(reported_url, current_url), "wrong url %s\n", wine_dbgstr_w(reported_url));
ok(pProtocolData != NULL, "pProtocolData == NULL\n");
if(!pProtocolData)
......
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