You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by rm...@apache.org on 2016/08/23 07:05:44 UTC

tomee git commit: some JVM tuning for tomee embedded test suite

Repository: tomee
Updated Branches:
  refs/heads/master 72bcde6f6 -> 2b190f0b7


some JVM tuning for tomee embedded test suite


Project: http://git-wip-us.apache.org/repos/asf/tomee/repo
Commit: http://git-wip-us.apache.org/repos/asf/tomee/commit/2b190f0b
Tree: http://git-wip-us.apache.org/repos/asf/tomee/tree/2b190f0b
Diff: http://git-wip-us.apache.org/repos/asf/tomee/diff/2b190f0b

Branch: refs/heads/master
Commit: 2b190f0b7a357f8debfd8f5aaa8dd8a93b107b4d
Parents: 72bcde6
Author: Romain manni-Bucau <rm...@gmail.com>
Authored: Tue Aug 23 09:05:24 2016 +0200
Committer: Romain manni-Bucau <rm...@gmail.com>
Committed: Tue Aug 23 09:05:24 2016 +0200

----------------------------------------------------------------------
 arquillian/arquillian-tomee-tests/pom.xml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tomee/blob/2b190f0b/arquillian/arquillian-tomee-tests/pom.xml
----------------------------------------------------------------------
diff --git a/arquillian/arquillian-tomee-tests/pom.xml b/arquillian/arquillian-tomee-tests/pom.xml
index a856f4a..be26792 100644
--- a/arquillian/arquillian-tomee-tests/pom.xml
+++ b/arquillian/arquillian-tomee-tests/pom.xml
@@ -275,7 +275,7 @@
                 </goals>
                 <configuration>
                   <skip>${skip.embedded}</skip>
-                  <argLine>-XX:+CMSClassUnloadingEnabled</argLine>
+                  <argLine>-XX:+CMSClassUnloadingEnabled -XX:MaxPermSize=512M</argLine>
                   <systemPropertyVariables>
                     <tomee.version>${project.version}</tomee.version>
                     <arquillian.launch>tomee-embedded</arquillian.launch>
@@ -461,6 +461,7 @@
           <plugin>
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-surefire-plugin</artifactId>
+            <version>2.19.1</version>
             <executions>
               <execution>
                 <id>test-tomee-embedded</id>
@@ -470,6 +471,7 @@
                 </goals>
                 <configuration>
                   <skip>${maven.test.skip}</skip>
+                  <argLine>-XX:MaxPermSize=512M</argLine>
                   <systemPropertyVariables>
                     <tomee.version>${project.version}</tomee.version>
                     <arquillian.launch>tomee-embedded</arquillian.launch>