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>
oldstable
Detlef Riekenberg 2016-09-29 23:56:56 +02:00 committed by Alexandre Julliard
parent 1ebbfb1a1d
commit b488a67baf
1 changed files with 1 additions and 1 deletions

View File

@ -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 | \