Skip to content

Commit

Permalink
[176][DRAFT] Try to reduce the datatransfer timeout
Browse files Browse the repository at this point in the history
DO NOT MERGE !

This commit is just to check if the fix about datatransfer is
operational on CI.

Bug: #176
  • Loading branch information
lredor committed Mar 25, 2024
1 parent 6376565 commit 7245af9
Show file tree
Hide file tree
Showing 4 changed files with 366 additions and 443 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@
import org.eclipse.sirius.tests.suite.common.AllCommonPluginTests;
import org.eclipse.sirius.tests.suite.common.AllCommonStandaloneTests;
import org.eclipse.sirius.tests.suite.diagram.AllDiagramPluginsTests;
import org.eclipse.sirius.tests.suite.diagram.AllDiagramStandaloneTests;
import org.eclipse.sirius.tests.suite.table.AllTablePluginTests;
import org.eclipse.sirius.tests.suite.table.AllTableStandaloneTests;
import org.eclipse.sirius.tests.unit.common.EnvironmentReportTest;

import junit.framework.JUnit4TestAdapter;
Expand Down Expand Up @@ -54,11 +51,11 @@ public JUnitBundlesReport() {
public static void addGerritPart(TestSuite suite) {
suite.addTest(new JUnit4TestAdapter(JUnitBundlesReport.class));
suite.addTest(AllCommonStandaloneTests.suite());
suite.addTest(AllTableStandaloneTests.suite());
suite.addTest(AllDiagramStandaloneTests.suite());
AllCommonPluginTests.addGerritPart(suite);
suite.addTest(AllTablePluginTests.suite());
AllDiagramPluginsTests.addGerritPart(suite);
// suite.addTest(AllTableStandaloneTests.suite());
// suite.addTest(AllDiagramStandaloneTests.suite());
// AllCommonPluginTests.addGerritPart(suite);
// suite.addTest(AllTablePluginTests.suite());
// AllDiagramPluginsTests.addGerritPart(suite);
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,26 +12,7 @@
*******************************************************************************/
package org.eclipse.sirius.tests.suite.common;

import org.eclipse.sirius.tests.unit.api.interpreter.ContentHelperTests;
import org.eclipse.sirius.tests.unit.api.refresh.GSetIntersectionTest;
import org.eclipse.sirius.tests.unit.api.refresh.SetIntersectionTest;
import org.eclipse.sirius.tests.unit.api.tools.tasks.InitInterpreterFromParsedVariableTaskTest;
import org.eclipse.sirius.tests.unit.api.vsm.color.SiriusColorTest;
import org.eclipse.sirius.tests.unit.api.vsm.editor.DragAndDropNodeTest;
import org.eclipse.sirius.tests.unit.api.vsm.editor.TypeAssistantTests;
import org.eclipse.sirius.tests.unit.api.vsm.editor.TypeContentProposalProviderTests;
import org.eclipse.sirius.tests.unit.api.vsm.interpreted.expression.variables.DiagramVariablesTest;
import org.eclipse.sirius.tests.unit.api.vsm.interpreted.expression.variables.SiriusVariablesTest;
import org.eclipse.sirius.tests.unit.common.CartesianProductTestCase;
import org.eclipse.sirius.tests.unit.common.EcoreIntrinsicExtenderTest;
import org.eclipse.sirius.tests.unit.common.EditingDomainFactoryServiceTests;
import org.eclipse.sirius.tests.unit.common.EditingDomainServicesTest;
import org.eclipse.sirius.tests.unit.common.FileUtilTest;
import org.eclipse.sirius.tests.unit.common.LabelProviderProviderServiceTests;
import org.eclipse.sirius.tests.unit.common.SessionLabelTest;
import org.eclipse.sirius.tests.unit.common.VisualBindingManagerTestCase;
import org.eclipse.sirius.tests.unit.common.logger.MarkerRuntimeLoggerTest;
import org.eclipse.sirius.tests.unit.refresh.RefreshFromViewpointActivationTests;

import junit.framework.JUnit4TestAdapter;
import junit.framework.Test;
Expand Down Expand Up @@ -59,26 +40,26 @@ public static void main(final String[] args) {
public static Test suite() {
final TestSuite suite = new TestSuite("Common Standalone Tests");
suite.addTest(new JUnit4TestAdapter(EditingDomainFactoryServiceTests.class));
suite.addTest(new JUnit4TestAdapter(LabelProviderProviderServiceTests.class));
suite.addTest(new JUnit4TestAdapter(EditingDomainServicesTest.class));
suite.addTestSuite(SetIntersectionTest.class);
suite.addTestSuite(GSetIntersectionTest.class);
suite.addTestSuite(SiriusVariablesTest.class);
suite.addTestSuite(DiagramVariablesTest.class);
suite.addTestSuite(SiriusColorTest.class);
suite.addTestSuite(CartesianProductTestCase.class);
suite.addTestSuite(VisualBindingManagerTestCase.class);
suite.addTest(new JUnit4TestAdapter(FileUtilTest.class));
suite.addTestSuite(ContentHelperTests.class);
// suite.addTest(new JUnit4TestAdapter(AllContributionTests.class));
suite.addTestSuite(DragAndDropNodeTest.class);
suite.addTestSuite(TypeAssistantTests.class);
suite.addTestSuite(TypeContentProposalProviderTests.class);
suite.addTestSuite(SessionLabelTest.class);
suite.addTestSuite(InitInterpreterFromParsedVariableTaskTest.class);
suite.addTest(new JUnit4TestAdapter(EcoreIntrinsicExtenderTest.class));
suite.addTest(new JUnit4TestAdapter(MarkerRuntimeLoggerTest.class));
suite.addTestSuite(RefreshFromViewpointActivationTests.class);
// suite.addTest(new JUnit4TestAdapter(LabelProviderProviderServiceTests.class));
// suite.addTest(new JUnit4TestAdapter(EditingDomainServicesTest.class));
// suite.addTestSuite(SetIntersectionTest.class);
// suite.addTestSuite(GSetIntersectionTest.class);
// suite.addTestSuite(SiriusVariablesTest.class);
// suite.addTestSuite(DiagramVariablesTest.class);
// suite.addTestSuite(SiriusColorTest.class);
// suite.addTestSuite(CartesianProductTestCase.class);
// suite.addTestSuite(VisualBindingManagerTestCase.class);
// suite.addTest(new JUnit4TestAdapter(FileUtilTest.class));
// suite.addTestSuite(ContentHelperTests.class);
// // suite.addTest(new JUnit4TestAdapter(AllContributionTests.class));
// suite.addTestSuite(DragAndDropNodeTest.class);
// suite.addTestSuite(TypeAssistantTests.class);
// suite.addTestSuite(TypeContentProposalProviderTests.class);
// suite.addTestSuite(SessionLabelTest.class);
// suite.addTestSuite(InitInterpreterFromParsedVariableTaskTest.class);
// suite.addTest(new JUnit4TestAdapter(EcoreIntrinsicExtenderTest.class));
// suite.addTest(new JUnit4TestAdapter(MarkerRuntimeLoggerTest.class));
// suite.addTestSuite(RefreshFromViewpointActivationTests.class);
return suite;
}
}
Loading

0 comments on commit 7245af9

Please sign in to comment.