urlmon: Skip reported_url tests when binding to object.

This limits the scope of
259cd79336
to fix random test failures. This makes the original test questionable,
so if we ever see it failing again, we should simply revert it.
This commit is contained in:
Jacek Caban 2013-02-12 17:21:16 +01:00 committed by Alexandre Julliard
parent 76997f1a38
commit c1a15b75aa
1 changed files with 3 additions and 1 deletions

View File

@ -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)