diff --git a/src/test/bin/test-patch.sh b/src/test/bin/test-patch.sh index dc61b8870c6..1b8b5a4a1d5 100755 --- a/src/test/bin/test-patch.sh +++ b/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