Module: wine Branch: master Commit: b488a67bafbfe231579bfd2a47f45db7d7decf7d URL: http://source.winehq.org/git/wine.git/?a=commit;h=b488a67bafbfe231579bfd2a47...
Author: Detlef Riekenberg wine.dev@web.de Date: Thu Sep 29 23:56:56 2016 +0200
scrrun/tests: Use case insensitive compare for filenames.
Signed-off-by: Detlef Riekenberg wine.dev@web.de Signed-off-by: Alexandre Julliard julliard@winehq.org
---
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 8457714..cd0e6d6 100644 --- a/dlls/scrrun/tests/filesystem.c +++ b/dlls/scrrun/tests/filesystem.c @@ -621,7 +621,7 @@ static void test_GetFile(void)
hr = IFile_get_Path(file, &str); ok(hr == S_OK, "got 0x%08x\n", hr); - ok(!lstrcmpW(str, pathW), "got %s\n", wine_dbgstr_w(str)); + ok(!lstrcmpiW(str, pathW), "got %s\n", wine_dbgstr_w(str)); SysFreeString(str);
#define FILE_ATTR_MASK (FILE_ATTRIBUTE_READONLY | FILE_ATTRIBUTE_HIDDEN | \