include/test.h: Don't use strcasecmp.

Fixes building tests in Visual Studio with msvc's own crt headers.
This commit is contained in:
Stefan Dösinger 2022-09-06 14:12:30 +03:00 committed by Alexandre Julliard
parent a63d7c06a9
commit 802016d0eb

View file

@ -743,7 +743,7 @@ int main( int argc, char **argv )
if (GetEnvironmentVariableA( "WINETEST_COLOR", p, sizeof(p) ))
{
BOOL automode = !strcasecmp(p, "auto");
BOOL automode = !strcmp(p, "auto");
winetest_color = automode ? isatty( fileno( stdout ) ) : atoi(p);
/* enable ANSI support for Windows console */
if (winetest_color)