Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2005-04-14 20:40:59 +0000
committerMichael Valenta2005-04-14 20:40:59 +0000
commitadcb9d69abddb2e9f449125a10e15777557b4018 (patch)
tree78b0190a746cbfabbb2c08a55a32ff3f49166511
parent510906470065b41092e94a87b2ee9b2e750c5807 (diff)
downloadeclipse.platform.team-adcb9d69abddb2e9f449125a10e15777557b4018.tar.gz
eclipse.platform.team-adcb9d69abddb2e9f449125a10e15777557b4018.tar.xz
eclipse.platform.team-adcb9d69abddb2e9f449125a10e15777557b4018.zip
*** empty log message ***perf_20050413
-rw-r--r--tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/ui/benchmark/SyncTests.java4
-rw-r--r--tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/ui/benchmark/WorkflowTests.java4
2 files changed, 4 insertions, 4 deletions
diff --git a/tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/ui/benchmark/SyncTests.java b/tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/ui/benchmark/SyncTests.java
index 668ea2625..824d11519 100644
--- a/tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/ui/benchmark/SyncTests.java
+++ b/tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/ui/benchmark/SyncTests.java
@@ -49,11 +49,11 @@ public class SyncTests extends BenchmarkTest {
}
public void testSync100Global() throws Exception {
- runTestSync(100, "CVS Synchronize", true, new SynchronizeViewTestAdapter());
+ runTestSync(100, "CVS Synchronize", false, new SynchronizeViewTestAdapter());
}
public void testSync100NoUI() throws Exception {
- runTestSync(100, "CVS Synchronize No UI", true, new SyncInfoSource());
+ runTestSync(100, "CVS Synchronize No UI", false, new SyncInfoSource());
}
protected IProject setupOutProject() throws Exception {
diff --git a/tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/ui/benchmark/WorkflowTests.java b/tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/ui/benchmark/WorkflowTests.java
index 7c053f913..d06de990a 100644
--- a/tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/ui/benchmark/WorkflowTests.java
+++ b/tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/ui/benchmark/WorkflowTests.java
@@ -59,11 +59,11 @@ public class WorkflowTests extends BenchmarkTest {
}
public void testBigWorkflowForSummary() throws Exception {
- runWorkflowTests("testBigGlobal", BenchmarkTestSetup.BIG_ZIP_FILE, "CVS Workflow", BenchmarkTestSetup.LOOP_COUNT, true, new SynchronizeViewTestAdapter());
+ runWorkflowTests("testBigGlobal", BenchmarkTestSetup.BIG_ZIP_FILE, "CVS Workflow", BenchmarkTestSetup.LOOP_COUNT, false, new SynchronizeViewTestAdapter());
}
public void testBigWorkflowNoUI() throws Exception {
- runWorkflowTests("testBigWithNoUI", BenchmarkTestSetup.BIG_ZIP_FILE, "CVS Workflow No UI", BenchmarkTestSetup.LOOP_COUNT, true, new SyncInfoSource());
+ runWorkflowTests("testBigWithNoUI", BenchmarkTestSetup.BIG_ZIP_FILE, "CVS Workflow No UI", BenchmarkTestSetup.LOOP_COUNT, false, new SyncInfoSource());
}
/**

Back to the top