Skip to main content
summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMichael Valenta2005-05-09 15:17:41 +0000
committerMichael Valenta2005-05-09 15:17:41 +0000
commit19f7bb72b71e6b1b2af8faedc6373ca4906dab63 (patch)
tree7953ae71f9ae875db6cc9ca5bebdd7dece3e3023 /tests
parent106811e64f8425206cbf4335769922d10068dcc3 (diff)
downloadeclipse.platform.team-19f7bb72b71e6b1b2af8faedc6373ca4906dab63.tar.gz
eclipse.platform.team-19f7bb72b71e6b1b2af8faedc6373ca4906dab63.tar.xz
eclipse.platform.team-19f7bb72b71e6b1b2af8faedc6373ca4906dab63.zip
Adjusting loop count of performance testsI20050509
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 60acf8c5f..624059b0d 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