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 to...@apache.org on 2011/10/27 02:13:31 UTC

svn commit: r1189552 - /hadoop/common/trunk/dev-support/test-patch.sh

Author: tomwhite
Date: Thu Oct 27 00:13:31 2011
New Revision: 1189552

URL: http://svn.apache.org/viewvc?rev=1189552&view=rev
Log:
HADOOP-7768. PreCommit-HADOOP-Build is failing on hadoop-auth-examples

Modified:
    hadoop/common/trunk/dev-support/test-patch.sh

Modified: hadoop/common/trunk/dev-support/test-patch.sh
URL: http://svn.apache.org/viewvc/hadoop/common/trunk/dev-support/test-patch.sh?rev=1189552&r1=1189551&r2=1189552&view=diff
==============================================================================
--- hadoop/common/trunk/dev-support/test-patch.sh (original)
+++ hadoop/common/trunk/dev-support/test-patch.sh Thu Oct 27 00:13:31 2011
@@ -598,8 +598,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"`