Skip to main content
summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMalgorzata Janczarska2013-01-30 15:31:56 +0000
committerMalgorzata Janczarska2013-01-30 15:31:56 +0000
commit6b3a0e8474172dcde31bbfdaa73c01761da25451 (patch)
tree1ed1b9dc1472ff7ad6c790ac4b26c81990817376 /tests
parent4b77dd2ff681377ca9b04be75a9e3b69632a5080 (diff)
downloadeclipse.platform.team-6b3a0e8474172dcde31bbfdaa73c01761da25451.tar.gz
eclipse.platform.team-6b3a0e8474172dcde31bbfdaa73c01761da25451.tar.xz
eclipse.platform.team-6b3a0e8474172dcde31bbfdaa73c01761da25451.zip
Bug 399375 - Test failures in ResourceMapperTests - increase timeout
Diffstat (limited to 'tests')
-rw-r--r--tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/core/CVSTestSetup.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/core/CVSTestSetup.java b/tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/core/CVSTestSetup.java
index d8cd58839..3a1e416a7 100644
--- a/tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/core/CVSTestSetup.java
+++ b/tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/core/CVSTestSetup.java
@@ -32,6 +32,7 @@ public class CVSTestSetup extends TestSetup {
public static final boolean RECORD_PROTOCOL_TRAFFIC;
public static final boolean ENSURE_SEQUENTIAL_ACCESS;
public static final boolean FAIL_ON_BAD_DIFF;
+ public static final int TIMEOUT = 600;
public static CVSRepositoryLocation repository;
public static CVSTestLogListener logListener;
@@ -170,6 +171,7 @@ public class CVSTestSetup extends TestSetup {
repository = setupRepository(REPOSITORY_LOCATION);
}
CVSProviderPlugin.getPlugin().setCompressionLevel(COMPRESSION_LEVEL);
+ CVSProviderPlugin.getPlugin().setTimeout(TIMEOUT);
// Add a log listener so we can ensure that nothing is logged during a test
if (logListener == null) {
logListener = new CVSTestLogListener();

Back to the top