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/04 10:00:33 UTC

svn commit: r600846 - /harmony/enhanced/buildtest/branches/2.0/tests/functional/src/test/functional/org/apache/harmony/test/func/jit/HLO/dce/deadnative/DeadNativeTest.java

Author: apavlenko
Date: Tue Dec  4 01:00:31 2007
New Revision: 600846

URL: http://svn.apache.org/viewvc?rev=600846&view=rev
Log:
Decreased number of iteration 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/dce/deadnative/DeadNativeTest.java

Modified: harmony/enhanced/buildtest/branches/2.0/tests/functional/src/test/functional/org/apache/harmony/test/func/jit/HLO/dce/deadnative/DeadNativeTest.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/dce/deadnative/DeadNativeTest.java?rev=600846&r1=600845&r2=600846&view=diff
==============================================================================
--- harmony/enhanced/buildtest/branches/2.0/tests/functional/src/test/functional/org/apache/harmony/test/func/jit/HLO/dce/deadnative/DeadNativeTest.java (original)
+++ harmony/enhanced/buildtest/branches/2.0/tests/functional/src/test/functional/org/apache/harmony/test/func/jit/HLO/dce/deadnative/DeadNativeTest.java Tue Dec  4 01:00:31 2007
@@ -55,7 +55,7 @@
 
        private double calc() {
            double d = 0.0;
-           for(int i = 0; i < 20000000; ++i) {
+           for(int i = 0; i < 200000; ++i) {
              d = 1000000.;
              for(;;) {
                 d *= .9;