You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by tu...@apache.org on 2011/10/29 01:38:17 UTC

svn commit: r1190673 - /hadoop/common/branches/branch-0.23/dev-support/test-patch.sh

Author: tucu
Date: Fri Oct 28 23:38:16 2011
New Revision: 1190673

URL: http://svn.apache.org/viewvc?rev=1190673&view=rev
Log:
Merge -r 1189551:1189552 from trunk to branch. FIXES: HADOOP-7768

Modified:
    hadoop/common/branches/branch-0.23/dev-support/test-patch.sh

Modified: hadoop/common/branches/branch-0.23/dev-support/test-patch.sh
URL: http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/dev-support/test-patch.sh?rev=1190673&r1=1190672&r2=1190673&view=diff
==============================================================================
--- hadoop/common/branches/branch-0.23/dev-support/test-patch.sh (original)
+++ hadoop/common/branches/branch-0.23/dev-support/test-patch.sh Fri Oct 28 23:38:16 2011
@@ -596,8 +596,8 @@ runTests () {
   echo ""
   echo ""
 
-  echo "$MVN clean install test -Pnative -D${PROJECT_NAME}PatchProcess"
-  $MVN clean install test -Pnative -D${PROJECT_NAME}PatchProcess
+  echo "$MVN clean install -Pnative -D${PROJECT_NAME}PatchProcess"
+  $MVN clean install -Pnative -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"`