You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mt...@apache.org on 2009/08/12 18:36:52 UTC

svn commit: r803586 - /commons/sandbox/runtime/trunk/src/main/native/test/testsuite.c

Author: mturk
Date: Wed Aug 12 16:36:52 2009
New Revision: 803586

URL: http://svn.apache.org/viewvc?rev=803586&view=rev
Log:
Use our strcasecmp instead stricmp

Modified:
    commons/sandbox/runtime/trunk/src/main/native/test/testsuite.c

Modified: commons/sandbox/runtime/trunk/src/main/native/test/testsuite.c
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/test/testsuite.c?rev=803586&r1=803585&r2=803586&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/test/testsuite.c (original)
+++ commons/sandbox/runtime/trunk/src/main/native/test/testsuite.c Wed Aug 12 16:36:52 2009
@@ -132,7 +132,7 @@
     }
     if (run_test) {
         fprintf(stdout, "Selected test: %s\n", run_test);
-        if (!stricmp(run_test, "all")) {
+        if (!strcasecmp(run_test, "all")) {
 
         }
         else if (!stricmp(run_test, "getenv")) {