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:
parent
01d81f4e51
commit
bb957bd2cd
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user