Browse Source

Fix test-patch.sh script for eclipse classpath verification

git-svn-id: https://svn.apache.org/repos/asf/hadoop/core/branches/HADOOP-4687/core@780701 13f79535-47bb-0310-9956-ffa450edef68
Giridharan Kesavan 16 years ago
parent
commit
bb957bd2cd
1 changed files with 4 additions and 3 deletions
  1. 4 3
      src/test/bin/test-patch.sh

+ 4 - 3
src/test/bin/test-patch.sh

@@ -101,7 +101,7 @@ checkout () {
   echo ""
   echo ""
   ### When run by a developer, if the workspace contains modifications, do not continue
-  status=`$SVN stat`
+  status=`$SVN stat --ignore-externals | sed -e '/^X[ ]*/D'`
   if [[ $HUDSON == "false" ]] ; then
     if [[ "$status" != "" ]] ; then
       echo "ERROR: can't run in a workspace that contains the following modifications"
@@ -674,8 +674,9 @@ checkStyle
 (( RESULT = RESULT + $? ))
 checkFindbugsWarnings
 (( RESULT = RESULT + $? ))
-checkEclipse
-(( RESULT = RESULT + $? ))
+##Commenting out as dependencies are now resolved using ivy
+##checkEclipse
+##(( RESULT = RESULT + $? ))
 checkReleaseAuditWarnings
 (( RESULT = RESULT + $? ))
 ### Do not call these when run by a developer