You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by py...@apache.org on 2007/04/06 04:24:24 UTC

svn commit: r526029 - /harmony/enhanced/classlib/trunk/modules/luni/src/main/native/launcher/shared/main.c

Author: pyang
Date: Thu Apr  5 19:24:24 2007
New Revision: 526029

URL: http://svn.apache.org/viewvc?view=rev&rev=526029
Log:
Fix HARMONY-3293([classlib]-Failed to create a new VM when passing the option of -verify in some eclipse tests), convert -verify to -Xverify in launcher as spec

Modified:
    harmony/enhanced/classlib/trunk/modules/luni/src/main/native/launcher/shared/main.c

Modified: harmony/enhanced/classlib/trunk/modules/luni/src/main/native/launcher/shared/main.c
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/luni/src/main/native/launcher/shared/main.c?view=diff&rev=526029&r1=526028&r2=526029
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/luni/src/main/native/launcher/shared/main.c (original)
+++ harmony/enhanced/classlib/trunk/modules/luni/src/main/native/launcher/shared/main.c Thu Apr  5 19:24:24 2007
@@ -956,6 +956,11 @@
               options[j].optionString = classPath;
               i++;              /*skip next arguement */
             }
+          else if (strcmp(argv[i], "-verify")==0)
+            {
+                options[j].optionString="-Xverify";
+                i++;
+            }
           else
             {
               options[j].optionString = argv[i];