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>
This commit is contained in:
parent
1ebbfb1a1d
commit
b488a67baf
|
@ -621,7 +621,7 @@ static void test_GetFile(void)
|
||||||
|
|
||||||
hr = IFile_get_Path(file, &str);
|
hr = IFile_get_Path(file, &str);
|
||||||
ok(hr == S_OK, "got 0x%08x\n", hr);
|
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);
|
SysFreeString(str);
|
||||||
|
|
||||||
#define FILE_ATTR_MASK (FILE_ATTRIBUTE_READONLY | FILE_ATTRIBUTE_HIDDEN | \
|
#define FILE_ATTR_MASK (FILE_ATTRIBUTE_READONLY | FILE_ATTRIBUTE_HIDDEN | \
|
||||||
|
|
Loading…
Reference in New Issue