Paul Vriens : mshtml/tests: Don't fail on unimplemented function.
Module: wine Branch: master Commit: 5e0384ab6a1e5302591d0ddac866853ef2b0612e URL: http://source.winehq.org/git/wine.git/?a=commit;h=5e0384ab6a1e5302591d0ddac8... Author: Paul Vriens <paul.vriens.wine(a)gmail.com> Date: Thu Jul 31 19:18:35 2008 +0200 mshtml/tests: Don't fail on unimplemented function. --- dlls/mshtml/tests/protocol.c | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/dlls/mshtml/tests/protocol.c b/dlls/mshtml/tests/protocol.c index 4e8b3d0..b17028f 100644 --- a/dlls/mshtml/tests/protocol.c +++ b/dlls/mshtml/tests/protocol.c @@ -266,9 +266,13 @@ static void res_sec_url_cmp(LPCWSTR url, DWORD size, LPCWSTR file) return; } + SetLastError(0xdeadbeef); len = SearchPathW(NULL, file, NULL, sizeof(buf)/sizeof(WCHAR), buf, NULL); if(!len) { - ok(0, "SearchPath failed: %u\n", GetLastError()); + if (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED) + win_skip("SearchPathW is not implemented\n"); + else + ok(0, "SearchPath failed: %u\n", GetLastError()); return; }
participants (1)
-
Alexandre Julliard