Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Taal2011-10-24 10:58:12 +0000
committerMartin Taal2011-10-24 10:58:12 +0000
commit2afc318a7b9ca4337fca7e73b3b006c960140a52 (patch)
tree526672363637153e8842c05c52be97d4d5a3a865 /plugins/org.eclipse.emf.cdo.tests.hibernate/src/org/eclipse/emf/cdo/tests/hibernate/AllTestsHibernate.java
parent519358316aab95877bdd6596bb47d6c1c56c6d84 (diff)
downloadcdo-2afc318a7b9ca4337fca7e73b3b006c960140a52.tar.gz
cdo-2afc318a7b9ca4337fca7e73b3b006c960140a52.tar.xz
cdo-2afc318a7b9ca4337fca7e73b3b006c960140a52.zip
[361792] store commit time stamp in the database
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.tests.hibernate/src/org/eclipse/emf/cdo/tests/hibernate/AllTestsHibernate.java')
-rw-r--r--plugins/org.eclipse.emf.cdo.tests.hibernate/src/org/eclipse/emf/cdo/tests/hibernate/AllTestsHibernate.java14
1 files changed, 13 insertions, 1 deletions
diff --git a/plugins/org.eclipse.emf.cdo.tests.hibernate/src/org/eclipse/emf/cdo/tests/hibernate/AllTestsHibernate.java b/plugins/org.eclipse.emf.cdo.tests.hibernate/src/org/eclipse/emf/cdo/tests/hibernate/AllTestsHibernate.java
index 6f5e5c2ef3..1b173105f2 100644
--- a/plugins/org.eclipse.emf.cdo.tests.hibernate/src/org/eclipse/emf/cdo/tests/hibernate/AllTestsHibernate.java
+++ b/plugins/org.eclipse.emf.cdo.tests.hibernate/src/org/eclipse/emf/cdo/tests/hibernate/AllTestsHibernate.java
@@ -21,7 +21,11 @@ import org.eclipse.emf.cdo.tests.CommitInfoTest;
import org.eclipse.emf.cdo.tests.ComplexTest;
import org.eclipse.emf.cdo.tests.ContainmentTest;
import org.eclipse.emf.cdo.tests.ExternalReferenceTest;
+import org.eclipse.emf.cdo.tests.LockingManagerRestartRepositoryTest;
+import org.eclipse.emf.cdo.tests.LockingManagerRestartSessionTest;
+import org.eclipse.emf.cdo.tests.LockingManagerRestartTransactionTest;
import org.eclipse.emf.cdo.tests.LockingManagerTest;
+import org.eclipse.emf.cdo.tests.LockingNotificationsTest;
import org.eclipse.emf.cdo.tests.MEMStoreQueryTest;
import org.eclipse.emf.cdo.tests.MergingTest;
import org.eclipse.emf.cdo.tests.MultiValuedOfAttributeTest;
@@ -76,12 +80,13 @@ public class AllTestsHibernate extends AllConfigs
protected void initTestClasses(List<Class<? extends ConfigTest>> testClasses, IScenario scenario)
{
// testClasses.clear();
- // testClasses.add(XRefTest.class);
+ // testClasses.add(HibernateTimeStampTest.class);
// if (true)
// {
// return;
// }
+ testClasses.add(HibernateTimeStampTest.class);
testClasses.add(Hibernate_Bugzilla_279982_Test.class);
testClasses.add(Hibernate_ContainmentTest.class);
testClasses.add(HibernateXATransactionTest.class);
@@ -109,6 +114,13 @@ public class AllTestsHibernate extends AllConfigs
testClasses.remove(Bugzilla_279982_Test.class);
+ // locking not supported
+ testClasses.remove(LockingManagerRestartRepositoryTest.class);
+ testClasses.remove(LockingManagerRestartSessionTest.class);
+ testClasses.remove(LockingManagerRestartTransactionTest.class);
+ testClasses.remove(LockingNotificationsTest.class);
+ testClasses.remove(LockingManagerRestartRepositoryTest.class);
+
// are replaced by Hibernate specific ones, mostly
// to prevent tests doing move from one container to another
testClasses.remove(ContainmentTest.class);

Back to the top