Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/releng
diff options
context:
space:
mode:
authorChristian W. Damus2014-05-15 19:43:10 +0000
committerChristian W. Damus2014-05-15 20:28:31 +0000
commit3c0558fb669b60a34293067da891239da42d81d3 (patch)
treeb7425046b5e5b069fb82ec5fdde8345f9b365449 /releng
parent5d3c2a2f51c8e2c45b468d4fce47cb4cf0562152 (diff)
downloadorg.eclipse.papyrus-3c0558fb669b60a34293067da891239da42d81d3.tar.gz
org.eclipse.papyrus-3c0558fb669b60a34293067da891239da42d81d3.tar.xz
org.eclipse.papyrus-3c0558fb669b60a34293067da891239da42d81d3.zip
434993: [Tests] Fix memory leaks in tests so they may run in one combined suite
https://bugs.eclipse.org/bugs/show_bug.cgi?id=434993 Integrate the SysML tests into the main test suite. Includes: - a new "Papyrus Core Tests (no SysML)" launcher that excludes the SysML tests - the "Papyrus ALL Tests", "Papyrus Core Tests (no SysML)", and "Papyrus SysML Tests" launchers all cap the object heap at 768 MB to run comfortably but still alert us if memory management regresses - updates the Any script executed by the build to remove the second step of launching the SysML tests, because they are now integrated into the one step
Diffstat (limited to 'releng')
-rw-r--r--releng/org.eclipse.mdt.papyrus.releng.buckminster/papyrus-trunk-nightly-tests/build.xml18
1 files changed, 1 insertions, 17 deletions
diff --git a/releng/org.eclipse.mdt.papyrus.releng.buckminster/papyrus-trunk-nightly-tests/build.xml b/releng/org.eclipse.mdt.papyrus.releng.buckminster/papyrus-trunk-nightly-tests/build.xml
index efc46cc9924..b6cbe77354b 100644
--- a/releng/org.eclipse.mdt.papyrus.releng.buckminster/papyrus-trunk-nightly-tests/build.xml
+++ b/releng/org.eclipse.mdt.papyrus.releng.buckminster/papyrus-trunk-nightly-tests/build.xml
@@ -285,23 +285,7 @@
<arg value="${result}/testresults/consolelogs/OutputLogJunitPapyrus.txt" />
</cmdargs>
</buckminster>
- <echo message="End of tests (1/2)" />
-
- <buckminster command="junit">
- <cmdargs>
- <arg value="-l" />
- <arg value="org.eclipse.papyrus.tests/Papyrus SysML tests.launch" />
- <arg value="-o" />
- <arg value="${result}/testresults/xml/SysMLTestReport.xml" />
- <arg value="--terseXML" />
- <arg value="--flatXML" />
- <arg value="--stderr" />
- <arg value="${result}/testresults/consolelogs/ErrorLogJunitPapyrus.txt" />
- <arg value="--stdout" />
- <arg value="${result}/testresults/consolelogs/OutputLogJunitPapyrus.txt" />
- </cmdargs>
- </buckminster>
- <echo message="End of tests (2/2)" />
+ <echo message="End of tests" />
<echo>Generating HTML report for Junit tests</echo>
<junitreport todir="${result}/testresults">

Back to the top