Author: stack
Date: Tue Oct 12 15:18:16 2010
New Revision: 1021796
URL: http://svn.apache.org/viewvc?rev=1021796&view=rev
Log:
Change test max run time from 3600 to 900 seconds, up memory for forked tests,
also enable assertions
Modified:
hbase/trunk/pom.xml
Modified: hbase/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/hbase/trunk/pom.xml?rev=1021796&r1=1021795&r2=1021796&view=diff
==============================================================================
--- hbase/trunk/pom.xml (original)
+++ hbase/trunk/pom.xml Tue Oct 12 15:18:16 2010
@@ -188,8 +188,9 @@
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
- <forkedProcessTimeoutInSeconds>3600</forkedProcessTimeoutInSeconds>
- <argLine>-Xmx512m</argLine>
+ <forkedProcessTimeoutInSeconds>900</forkedProcessTimeoutInSeconds>
+ <argLine>-enableassertions</argLine>
+ <argLine>-Xmx1024m</argLine>
<redirectTestOutputToFile>true</redirectTestOutputToFile>
</configuration>
</plugin>