Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Wolf2016-01-11 17:54:15 +0000
committerMatthias Sohn2016-01-23 22:25:05 +0000
commit59867e05091568515731909ab4f6120b678fa896 (patch)
tree2f683a7352c5d5344bbe63a1fdebdfffb758dae7 /org.eclipse.egit.ui.importer.tests
parentd4b3bbf6f76fcf71e231cc2f747c7d6f8216370c (diff)
downloadegit-59867e05091568515731909ab4f6120b678fa896.tar.gz
egit-59867e05091568515731909ab4f6120b678fa896.tar.xz
egit-59867e05091568515731909ab4f6120b678fa896.zip
[test log] Unify pom.xml for tests and configure JVM
- Move the mac and not-mac profiles into the global pom. - Move the coretest.vmargs (empty) and uitest.vmargs (with defaults) there. - Remove the profiles for selecting the target platform. Target platform can be configured directly, e.g.: $ mvn clean install -Dtarget-platform=egit-4.4 - Configure max heap size (1GB) and max perm gen size (150MB). Max values observed by monitoring JVM during Maven build were ~400MB (heap) and ~100MB (permgen). Change-Id: Ia210bad67889cdad9dbf269216a1554af249a9ed Signed-off-by: Thomas Wolf <thomas.wolf@paranor.ch> Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.egit.ui.importer.tests')
-rw-r--r--org.eclipse.egit.ui.importer.tests/pom.xml31
1 files changed, 0 insertions, 31 deletions
diff --git a/org.eclipse.egit.ui.importer.tests/pom.xml b/org.eclipse.egit.ui.importer.tests/pom.xml
index f2de87c705..2c4b364eed 100644
--- a/org.eclipse.egit.ui.importer.tests/pom.xml
+++ b/org.eclipse.egit.ui.importer.tests/pom.xml
@@ -12,37 +12,6 @@
<name>Git Team Provider (experimental auto-import wizard, incubation)</name>
- <properties>
- <uitest.vmparams>-Dorg.eclipse.swtbot.search.timeout=30000 -Xmx1024m -XX:MaxPermSize=384m</uitest.vmparams>
- </properties>
-
- <profiles>
- <profile>
- <id>macosx</id>
- <activation>
- <os>
- <name>mac os x</name>
- <family>mac</family>
- </os>
- </activation>
- <properties>
- <ui.test.vmargs>${uitest.vmparams} -XstartOnFirstThread</ui.test.vmargs>
- </properties>
- </profile>
- <profile>
- <id>other-os</id>
- <activation>
- <os>
- <name>not-mac</name>
- <family>!mac</family>
- </os>
- </activation>
- <properties>
- <ui.test.vmargs>${test.vmparams} ${uitest.vmparams}</ui.test.vmargs>
- </properties>
- </profile>
- </profiles>
-
<build>
<plugins>
<plugin>

Back to the top