Skip to main content
summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMichael Valenta2005-05-10 13:42:59 +0000
committerMichael Valenta2005-05-10 13:42:59 +0000
commit3783549d6713cb199464f1c05a02f8fbc7c734c0 (patch)
tree1744b7c48f56934360df141330773e68862c3fcf /tests
parent0c89e81d24eab4e24364b0045681ff8670204d25 (diff)
downloadeclipse.platform.team-3783549d6713cb199464f1c05a02f8fbc7c734c0.tar.gz
eclipse.platform.team-3783549d6713cb199464f1c05a02f8fbc7c734c0.tar.xz
eclipse.platform.team-3783549d6713cb199464f1c05a02f8fbc7c734c0.zip
Increased loop count
Diffstat (limited to 'tests')
-rw-r--r--tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/ui/benchmark/BenchmarkTestSetup.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/ui/benchmark/BenchmarkTestSetup.java b/tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/ui/benchmark/BenchmarkTestSetup.java
index 700ccc35a..9c0ebf526 100644
--- a/tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/ui/benchmark/BenchmarkTestSetup.java
+++ b/tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/ui/benchmark/BenchmarkTestSetup.java
@@ -30,7 +30,7 @@ public class BenchmarkTestSetup extends CVSTestSetup {
// Static initializer for constants
static {
try {
- LOOP_COUNT = Integer.valueOf(System.getProperty("eclipse.cvs.loopCount", "3")).intValue();
+ LOOP_COUNT = Integer.valueOf(System.getProperty("eclipse.cvs.loopCount", "6")).intValue();
} catch (NumberFormatException e1) {
LOOP_COUNT = 1;
}

Back to the top