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/22 22:50:11 UTC

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

Author: stack
Date: Thu Dec 22 21:50:11 2011
New Revision: 1222472

URL: http://svn.apache.org/viewvc?rev=1222472&view=rev
Log:
HBASE-5805 fix test-patch script from setting the ulimit

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=1222472&r1=1222471&r2=1222472&view=diff
==============================================================================
--- hbase/trunk/dev-support/test-patch.sh (original)
+++ hbase/trunk/dev-support/test-patch.sh Thu Dec 22 21:50:11 2011
@@ -13,8 +13,6 @@
 
 
 #set -x
-echo 'First ulimit'
-ulimit -a
 
 ### Setup some variables.  
 ### SVN_REVISION and BUILD_URL are set by Hudson if it is run by patch process
@@ -570,11 +568,6 @@ 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"
-  echo 'Second ulimit'
-  ulimit -a
-  ulimit -n 60000
-  ulimit -u 10240
-  echo 'Third ulimit'
   ulimit -a
   $MVN clean test -P runAllTests -D${PROJECT_NAME}PatchProcess
   if [[ $? != 0 ]] ; then