You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2011/12/09 19:55:38 UTC

svn commit: r1212575 - /hbase/trunk/dev-support/test-patch.sh

Author: stack
Date: Fri Dec  9 18:55:38 2011
New Revision: 1212575

URL: http://svn.apache.org/viewvc?rev=1212575&view=rev
Log:
HBASE-4996 hadoopqa not running long category tests, just short and medium

Modified:
    hbase/trunk/dev-support/test-patch.sh

Modified: hbase/trunk/dev-support/test-patch.sh
URL: http://svn.apache.org/viewvc/hbase/trunk/dev-support/test-patch.sh?rev=1212575&r1=1212574&r2=1212575&view=diff
==============================================================================
--- hbase/trunk/dev-support/test-patch.sh (original)
+++ hbase/trunk/dev-support/test-patch.sh Fri Dec  9 18:55:38 2011
@@ -569,7 +569,8 @@ runTests () {
   ### Kill any rogue build processes from the last attempt
   $PS auxwww | $GREP ${PROJECT_NAME}PatchProcess | $AWK '{print $2}' | /usr/bin/xargs -t -I {} /bin/kill -9 {} > /dev/null
   echo "$MVN clean test -D${PROJECT_NAME}PatchProcess"
-  $MVN clean test -D${PROJECT_NAME}PatchProcess
+  ulimit -a
+  $MVN clean test -P runAllTests -D${PROJECT_NAME}PatchProcess
   if [[ $? != 0 ]] ; then
      ### Find and format names of failed tests
      failed_tests=`find . -name 'TEST*.xml' | xargs $GREP  -l -E "<failure|<error" | sed -e "s|.*target/surefire-reports/TEST-|                  |g" | sed -e "s|\.xml||g"`