Jacek Caban : urlmon: Fixed some tests on IE11.

Alexandre Julliard julliard at winehq.org
Mon Feb 24 15:42:30 CST 2014


Module: wine
Branch: master
Commit: 2b04a5e3ff5d05032140ae69302ac8551efb70be
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=2b04a5e3ff5d05032140ae69302ac8551efb70be

Author: Jacek Caban <jacek at codeweavers.com>
Date:   Mon Feb 24 11:09:54 2014 +0100

urlmon: Fixed some tests on IE11.

---

 dlls/urlmon/tests/protocol.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/urlmon/tests/protocol.c b/dlls/urlmon/tests/protocol.c
index a8f8d7a..8a19329 100644
--- a/dlls/urlmon/tests/protocol.c
+++ b/dlls/urlmon/tests/protocol.c
@@ -1385,7 +1385,7 @@ static HRESULT WINAPI BindInfo_GetBindString(IInternetBindInfo *iface, ULONG ulS
         return S_OK;
     }
     default:
-        ok(0, "unexpected call\n");
+        ok(0, "unexpected ulStringType %d\n", ulStringType);
     }
 
     return E_NOTIMPL;
@@ -3638,7 +3638,7 @@ static void test_binding(int prot, DWORD grf_pi, DWORD test_flags)
     CHECK_CALLED(QueryService_InternetProtocol);
     CHECK_CALLED(CreateInstance);
     CHECK_CALLED(ReportProgress_PROTOCOLCLASSID);
-    CHECK_CALLED(SetPriority);
+    CLEAR_CALLED(SetPriority); /* IE11 does not call it. */
     if(impl_protex)
         CHECK_CALLED(StartEx);
     else




More information about the wine-cvs mailing list