Browse Source

HADOOP-4074. Commenting out release audit in patch testing process until it can be fixed.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/core/trunk@692271 13f79535-47bb-0310-9956-ffa450edef68
Nigel Daley 17 years ago
parent
commit
c290427f24
1 changed files with 7 additions and 5 deletions
  1. 7 5
      src/test/bin/test-patch.sh

+ 7 - 5
src/test/bin/test-patch.sh

@@ -156,10 +156,11 @@ setup () {
   echo "======================================================================"
   echo ""
   echo ""
+  ### DISABLE RELEASE AUDIT UNTIL HADOOP-4074 IS FIXED
   ### Do not call releaseaudit when run by a developer
-  if [[ $HUDSON == "true" ]] ; then
-    $ANT_HOME/bin/ant -Dversion="${VERSION}" -DHadoopPatchProcess= releaseaudit &> $PATCH_DIR/trunkReleaseAuditWarnings.txt
-  fi
+  ### if [[ $HUDSON == "true" ]] ; then
+    ### $ANT_HOME/bin/ant -Dversion="${VERSION}" -DHadoopPatchProcess= releaseaudit &> $PATCH_DIR/trunkReleaseAuditWarnings.txt
+  ### fi
   $ANT_HOME/bin/ant -Dversion="${VERSION}" -Djavac.args="-Xlint -Xmaxwarns 1000" $ECLIPSE_PROPERTY -DHadoopPatchProcess= clean tar &> $PATCH_DIR/trunkJavacWarnings.txt
   if [[ $? != 0 ]] ; then
     echo "Trunk compilation is broken?"
@@ -639,8 +640,9 @@ checkFindbugsWarnings
 (( RESULT = RESULT + $? ))
 ### Do not call these when run by a developer 
 if [[ $HUDSON == "true" ]] ; then
-  checkReleaseAuditWarnings
-  (( RESULT = RESULT + $? ))
+  ### DISABLE RELEASE AUDIT UNTIL HADOOP-4074 IS FIXED
+  ### checkReleaseAuditWarnings
+  ### (( RESULT = RESULT + $? ))
   runCoreTests
   (( RESULT = RESULT + $? ))
   runContribTests