mirror of
https://github.com/reactos/reactos.git
synced 2026-06-08 08:52:59 +08:00
[USERENV_WINETEST] Compare variable case insensitive
This fixes a test for TestWHS
This commit is contained in:
committed by
Timo Kreuzer
parent
eeaddf5bbc
commit
c548b97328
@@ -152,7 +152,11 @@ static void test_create_env(void)
|
||||
for(i=0; i<4; i++)
|
||||
{
|
||||
r = get_env(env[i], "SystemRoot", &st);
|
||||
#ifdef __REACTOS__
|
||||
ok(!stricmp(st, "SystemRoot=overwrite"), "%s\n", st);
|
||||
#else
|
||||
ok(!strcmp(st, "SystemRoot=overwrite"), "%s\n", st);
|
||||
#endif
|
||||
expect(TRUE, r);
|
||||
HeapFree(GetProcessHeap(), 0, st);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user