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
This commit is contained in:
Giridharan Kesavan 2009-06-01 16:06:19 +00:00
parent 01d81f4e51
commit bb957bd2cd
1 changed files with 4 additions and 3 deletions

View File

@ -101,7 +101,7 @@ checkout () {
echo "" echo ""
echo "" echo ""
### When run by a developer, if the workspace contains modifications, do not continue ### 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 [[ $HUDSON == "false" ]] ; then
if [[ "$status" != "" ]] ; then if [[ "$status" != "" ]] ; then
echo "ERROR: can't run in a workspace that contains the following modifications" echo "ERROR: can't run in a workspace that contains the following modifications"
@ -674,8 +674,9 @@ checkStyle
(( RESULT = RESULT + $? )) (( RESULT = RESULT + $? ))
checkFindbugsWarnings checkFindbugsWarnings
(( RESULT = RESULT + $? )) (( RESULT = RESULT + $? ))
checkEclipse ##Commenting out as dependencies are now resolved using ivy
(( RESULT = RESULT + $? )) ##checkEclipse
##(( RESULT = RESULT + $? ))
checkReleaseAuditWarnings checkReleaseAuditWarnings
(( RESULT = RESULT + $? )) (( RESULT = RESULT + $? ))
### Do not call these when run by a developer ### Do not call these when run by a developer