Author: jgray
Date: Mon Nov 1 19:25:02 2010
New Revision: 1029798
URL: http://svn.apache.org/viewvc?rev=1029798&view=rev
Log:
HBASE-3184 Xmx setting in pom to use for tests/surefire does not appear to work
Modified:
hbase/trunk/CHANGES.txt
hbase/trunk/pom.xml
Modified: hbase/trunk/CHANGES.txt
URL:
http://svn.apache.org/viewvc/hbase/trunk/CHANGES.txt?rev=1029798&r1=1029797&r2=1029798&view=diff
==============================================================================
--- hbase/trunk/CHANGES.txt (original)
+++ hbase/trunk/CHANGES.txt Mon Nov 1 19:25:02 2010
@@ -1080,6 +1080,8 @@ Release 0.21.0 - Unreleased
HBASE-3126 Force use of 'mv -f' when moving aside hbase logfiles
HBASE-3176 Remove compile warnings in HRegionServer
HBASE-3154 HBase RPC should support timeout (Hairong via jgray)
+ HBASE-3184 Xmx setting in pom to use for tests/surefire does not appear
+ to work
NEW FEATURES
Modified: hbase/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/hbase/trunk/pom.xml?rev=1029798&r1=1029797&r2=1029798&view=diff
==============================================================================
--- hbase/trunk/pom.xml (original)
+++ hbase/trunk/pom.xml Mon Nov 1 19:25:02 2010
@@ -189,8 +189,7 @@
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<forkedProcessTimeoutInSeconds>900</forkedProcessTimeoutInSeconds>
- <argLine>-enableassertions</argLine>
- <argLine>-Xmx1400m</argLine>
+ <argLine>-enableassertions -Xmx1400m</argLine>
<redirectTestOutputToFile>true</redirectTestOutputToFile>
</configuration>
</plugin>