use strcasecmp for cmdline testing so I don't have to use caps randomly

SVN revision: 65488
This commit is contained in:
Mike Blumenkrantz 2011-11-21 18:54:53 +00:00
parent 0fb441bb77
commit ab7c84bc31
1 changed files with 1 additions and 1 deletions

View File

@ -507,7 +507,7 @@ add_tests:
if (autorun)
{
EINA_LIST_FOREACH(tests, l, t)
if ((t->name) && (t->cb) && (!strcmp(t->name, autorun)))
if ((t->name) && (t->cb) && (!strcasecmp(t->name, autorun)))
t->cb(NULL, NULL, NULL);
}