tests: match test names using strcasecmp when parsing cmdline

Reviewed-by: Stefan Schmidt <stefan@osg.samsung.com>
This commit is contained in:
Mike Blumenkrantz 2018-03-26 13:06:49 -04:00 committed by Stefan Schmidt
parent da38811a71
commit b340b5e49c
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ _efl_test_use(int argc, const char **argv, const char *test_case)
return 1;
for (; argc > 0; argc--, argv++)
if (strcmp(test_case, *argv) == 0)
if (strcasecmp(test_case, *argv) == 0)
return 1;
return 0;
}