[USERENV_WINETEST] Compare variable case insensitive

This fixes a test for TestWHS
This commit is contained in:
Mark Jansen
2023-02-01 20:15:54 +01:00
committed by Timo Kreuzer
parent eeaddf5bbc
commit c548b97328

View File

@@ -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);
}