Detlef Riekenberg : scrrun/tests: Ignore case in path names.

Alexandre Julliard julliard at wine.codeweavers.com
Thu Nov 20 09:54:14 CST 2014


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

Author: Detlef Riekenberg <wine.dev at web.de>
Date:   Wed Nov 19 22:08:12 2014 +0100

scrrun/tests: Ignore case in path names.

---

 dlls/scrrun/tests/filesystem.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/scrrun/tests/filesystem.c b/dlls/scrrun/tests/filesystem.c
index faa0b0c..54cf4e3 100644
--- a/dlls/scrrun/tests/filesystem.c
+++ b/dlls/scrrun/tests/filesystem.c
@@ -893,7 +893,7 @@ static void test_FolderCollection(void)
 
     hr = IFolder_get_Path(folder, &str);
     ok(hr == S_OK, "got 0x%08x\n", hr);
-    ok(!lstrcmpW(buffW, str), "got %s, expected %s\n", wine_dbgstr_w(str), wine_dbgstr_w(buffW));
+    ok(!lstrcmpiW(buffW, str), "got %s, expected %s\n", wine_dbgstr_w(str), wine_dbgstr_w(buffW));
     SysFreeString(str);
 
     lstrcpyW(pathW, buffW);




More information about the wine-cvs mailing list