Module: wine Branch: master Commit: 759f12c187c1aea79d4b7f8bf1aa608568b0d8d8 URL: http://source.winehq.org/git/wine.git/?a=commit;h=759f12c187c1aea79d4b7f8bf1...
Author: Paul Vriens Paul.Vriens.Wine@gmail.com Date: Mon Nov 22 13:31:53 2010 +0100
mscoree/tests: Use more A-functions to fix test failures on Win9x.
---
dlls/mscoree/tests/mscoree.c | 35 +++++++++++++++++++---------------- 1 files changed, 19 insertions(+), 16 deletions(-)
diff --git a/dlls/mscoree/tests/mscoree.c b/dlls/mscoree/tests/mscoree.c index d05a2f1..2f03166 100644 --- a/dlls/mscoree/tests/mscoree.c +++ b/dlls/mscoree/tests/mscoree.c @@ -153,8 +153,9 @@ static void test_loadlibraryshim(void) const WCHAR gdidll[] = {'g','d','i','3','2','.','d','l','l',0}; HRESULT hr; const WCHAR *latest = NULL; + CHAR latestA[MAX_PATH]; HMODULE hdll; - WCHAR dllpath[MAX_PATH]; + CHAR dllpath[MAX_PATH];
hr = pLoadLibraryShim(fusion, v1_1, NULL, &hdll); ok(hr == S_OK || hr == E_HANDLE, "LoadLibraryShim failed, hr=%x\n", hr); @@ -162,10 +163,10 @@ static void test_loadlibraryshim(void) { latest = v1_1;
- GetModuleFileNameW(hdll, dllpath, MAX_PATH); + GetModuleFileNameA(hdll, dllpath, MAX_PATH);
- todo_wine ok(StrStrIW(dllpath, v1_1) != 0, "incorrect fusion.dll path %s\n", wine_dbgstr_w(dllpath)); - ok(StrStrIW(dllpath, fusiondll) != 0, "incorrect fusion.dll path %s\n", wine_dbgstr_w(dllpath)); + todo_wine ok(StrStrIA(dllpath, "v1.1.4322") != 0, "incorrect fusion.dll path %s\n", dllpath); + ok(StrStrIA(dllpath, "fusion.dll") != 0, "incorrect fusion.dll path %s\n", dllpath);
FreeLibrary(hdll); } @@ -176,10 +177,10 @@ static void test_loadlibraryshim(void) { latest = v2_0;
- GetModuleFileNameW(hdll, dllpath, MAX_PATH); + GetModuleFileNameA(hdll, dllpath, MAX_PATH);
- todo_wine ok(StrStrIW(dllpath, v2_0) != 0, "incorrect fusion.dll path %s\n", wine_dbgstr_w(dllpath)); - ok(StrStrIW(dllpath, fusiondll) != 0, "incorrect fusion.dll path %s\n", wine_dbgstr_w(dllpath)); + todo_wine ok(StrStrIA(dllpath, "v2.0.50727") != 0, "incorrect fusion.dll path %s\n", dllpath); + ok(StrStrIA(dllpath, "fusion.dll") != 0, "incorrect fusion.dll path %s\n", dllpath);
FreeLibrary(hdll); } @@ -192,10 +193,10 @@ static void test_loadlibraryshim(void) if (!latest) latest = v4_0;
- GetModuleFileNameW(hdll, dllpath, MAX_PATH); + GetModuleFileNameA(hdll, dllpath, MAX_PATH);
- todo_wine ok(StrStrIW(dllpath, v4_0) != 0, "incorrect fusion.dll path %s\n", wine_dbgstr_w(dllpath)); - ok(StrStrIW(dllpath, fusiondll) != 0, "incorrect fusion.dll path %s\n", wine_dbgstr_w(dllpath)); + todo_wine ok(StrStrIA(dllpath, "v4.0.30319") != 0, "incorrect fusion.dll path %s\n", dllpath); + ok(StrStrIA(dllpath, "fusion.dll") != 0, "incorrect fusion.dll path %s\n", dllpath);
FreeLibrary(hdll); } @@ -205,15 +206,17 @@ static void test_loadlibraryshim(void) if (SUCCEEDED(hr)) FreeLibrary(hdll);
+ WideCharToMultiByte(CP_ACP, 0, latest, -1, latestA, MAX_PATH, NULL, NULL); + hr = pLoadLibraryShim(fusion, NULL, NULL, &hdll); ok(hr == S_OK, "LoadLibraryShim failed, hr=%x\n", hr); if (SUCCEEDED(hr)) { - GetModuleFileNameW(hdll, dllpath, MAX_PATH); + GetModuleFileNameA(hdll, dllpath, MAX_PATH);
if (latest) - todo_wine ok(StrStrIW(dllpath, latest) != 0, "incorrect fusion.dll path %s\n", wine_dbgstr_w(dllpath)); - ok(StrStrIW(dllpath, fusiondll) != 0, "incorrect fusion.dll path %s\n", wine_dbgstr_w(dllpath)); + todo_wine ok(StrStrIA(dllpath, latestA) != 0, "incorrect fusion.dll path %s\n", dllpath); + ok(StrStrIA(dllpath, "fusion.dll") != 0, "incorrect fusion.dll path %s\n", dllpath);
FreeLibrary(hdll); } @@ -222,11 +225,11 @@ static void test_loadlibraryshim(void) ok(hr == S_OK, "LoadLibraryShim failed, hr=%x\n", hr); if (SUCCEEDED(hr)) { - GetModuleFileNameW(hdll, dllpath, MAX_PATH); + GetModuleFileNameA(hdll, dllpath, MAX_PATH);
if (latest) - todo_wine ok(StrStrIW(dllpath, latest) != 0, "incorrect fusion.dll path %s\n", wine_dbgstr_w(dllpath)); - ok(StrStrIW(dllpath, fusiondll) != 0, "incorrect fusion.dll path %s\n", wine_dbgstr_w(dllpath)); + todo_wine ok(StrStrIA(dllpath, latestA) != 0, "incorrect fusion.dll path %s\n", dllpath); + ok(StrStrIA(dllpath, "fusion.dll") != 0, "incorrect fusion.dll path %s\n", dllpath);
FreeLibrary(hdll); }