You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by ap...@apache.org on 2007/12/10 13:55:32 UTC

svn commit: r602888 - /harmony/enhanced/buildtest/branches/2.0/tests/functional/src/test/functional/org/apache/harmony/test/func/jit/HLO/inline/Exception/Exception9/Exception9.java

Author: apavlenko
Date: Mon Dec 10 04:55:30 2007
New Revision: 602888

URL: http://svn.apache.org/viewvc?rev=602888&view=rev
Log:
Sometimes the test fails because of timeout. Decreased number of iterations to make the test more lightweight

Modified:
    harmony/enhanced/buildtest/branches/2.0/tests/functional/src/test/functional/org/apache/harmony/test/func/jit/HLO/inline/Exception/Exception9/Exception9.java

Modified: harmony/enhanced/buildtest/branches/2.0/tests/functional/src/test/functional/org/apache/harmony/test/func/jit/HLO/inline/Exception/Exception9/Exception9.java
URL: http://svn.apache.org/viewvc/harmony/enhanced/buildtest/branches/2.0/tests/functional/src/test/functional/org/apache/harmony/test/func/jit/HLO/inline/Exception/Exception9/Exception9.java?rev=602888&r1=602887&r2=602888&view=diff
==============================================================================
--- harmony/enhanced/buildtest/branches/2.0/tests/functional/src/test/functional/org/apache/harmony/test/func/jit/HLO/inline/Exception/Exception9/Exception9.java (original)
+++ harmony/enhanced/buildtest/branches/2.0/tests/functional/src/test/functional/org/apache/harmony/test/func/jit/HLO/inline/Exception/Exception9/Exception9.java Mon Dec 10 04:55:30 2007
@@ -59,7 +59,7 @@
     }
     
     final void inlineMethod() {
-        if (count < 10000) {
+        if (count < 1000) {
             count++;
             System.loadLibrary("non_existing_lib");
         } else {