Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Roldan Betancort2011-02-23 11:11:16 +0000
committerVictor Roldan Betancort2011-02-23 11:11:16 +0000
commit6ffd7fcb85da9b16a093d1bbe151eb7d6b3d8330 (patch)
tree081f7771ccfba5aa09b9dcdaf4bfbf78585ac2a2 /plugins/org.eclipse.net4j.tests/src/org/eclipse
parentf55ebe10616c18cc7799e31deacdc3bfd25b2509 (diff)
downloadcdo-6ffd7fcb85da9b16a093d1bbe151eb7d6b3d8330.tar.gz
cdo-6ffd7fcb85da9b16a093d1bbe151eb7d6b3d8330.tar.xz
cdo-6ffd7fcb85da9b16a093d1bbe151eb7d6b3d8330.zip
- Partially implemented Raw interface. Fixed failing test-cases for BackupTest.
- Fixed bug in MEMDB4OStore that would create a new MemoryObjectContainer, losing all elements in the repository - Changed AbstractOMTest.DEFAULT_TIMEOUT to 15 seconds - Included 2 test-cases in AllTestsDB4O that were excluded due to huge time necessary to be executed - Fixed DB4OStore.handleRevisions(), in which null EClass argument was not being supported
Diffstat (limited to 'plugins/org.eclipse.net4j.tests/src/org/eclipse')
-rw-r--r--plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/util/tests/AbstractOMTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/util/tests/AbstractOMTest.java b/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/util/tests/AbstractOMTest.java
index e8a41888c9..cb6c1d892a 100644
--- a/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/util/tests/AbstractOMTest.java
+++ b/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/util/tests/AbstractOMTest.java
@@ -50,7 +50,7 @@ import junit.framework.TestResult;
*/
public abstract class AbstractOMTest extends TestCase
{
- public static final long DEFAULT_TIMEOUT = 120 * 1000;
+ public static final long DEFAULT_TIMEOUT = 15 * 1000;
public static final long DEFAULT_TIMEOUT_EXPECTED = 2 * 1000;

Back to the top