Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Wolf2016-01-10 09:51:42 +0000
committerMatthias Sohn2016-01-11 00:36:00 +0000
commit8b47bde5f00f3487b5a5bb2680bbd827add889f6 (patch)
treea22b4eabb651c3758a9ea8771d9db2154130afc7
parent37186169335ae2adf7050f492eb7e57ccdff0e17 (diff)
downloadegit-8b47bde5f00f3487b5a5bb2680bbd827add889f6.tar.gz
egit-8b47bde5f00f3487b5a5bb2680bbd827add889f6.tar.xz
egit-8b47bde5f00f3487b5a5bb2680bbd827add889f6.zip
[test log] Enable console logging for org.eclipse.egit.mylyn.ui.test
Change-Id: Ie66e7803f382c16a260f315626898d28984f0fba Signed-off-by: Thomas Wolf <thomas.wolf@paranor.ch>
-rw-r--r--org.eclipse.egit.mylyn.ui.test/pom.xml8
1 files changed, 6 insertions, 2 deletions
diff --git a/org.eclipse.egit.mylyn.ui.test/pom.xml b/org.eclipse.egit.mylyn.ui.test/pom.xml
index 6d94f6a544..805817cd41 100644
--- a/org.eclipse.egit.mylyn.ui.test/pom.xml
+++ b/org.eclipse.egit.mylyn.ui.test/pom.xml
@@ -24,6 +24,10 @@
<name>EGit Mylyn UI Test Plug-in</name>
+ <properties>
+ <uitest.vmparams>-Xmx512m -XX:MaxPermSize=256m</uitest.vmparams>
+ </properties>
+
<profiles>
<profile>
<id>skip-ui-tests</id>
@@ -45,7 +49,7 @@
</os>
</activation>
<properties>
- <ui.test.vmargs>-Xmx512m -XX:MaxPermSize=256m -XstartOnFirstThread</ui.test.vmargs>
+ <ui.test.vmargs>${uitest.vmparams} -XstartOnFirstThread</ui.test.vmargs>
</properties>
</profile>
<profile>
@@ -57,7 +61,7 @@
</os>
</activation>
<properties>
- <ui.test.vmargs>-Xmx512m -XX:MaxPermSize=256m</ui.test.vmargs>
+ <ui.test.vmargs>${test.vmparams} ${uitest.vmparams}</ui.test.vmargs>
</properties>
</profile>
</profiles>

Back to the top