@@ -379,6 +379,9 @@ Trunk (unreleased changes)
HADOOP-4194. Added the JobConf and JobID to job-related methods in
JobTrackerInstrumentation for better metrics. (Mac Yang via acmurthy)
+ HADOOP-3975. Change test-patch script to report working the dir
+ modifications preventing the suite from being run. (Ramya R via cdouglas)
+
OPTIMIZATIONS
HADOOP-3556. Removed lock contention in MD5Hash by changing the
@@ -98,10 +98,12 @@ checkout () {
echo ""
### When run by a developer, if the workspace contains modifications, do not continue
+ status=`$SVN stat`
if [[ $HUDSON == "false" ]] ; then
- if [[ `$SVN stat` != "" ]] ; then
- echo "ERROR: can't run in a workspace that contains modifications"
- cleanupAndExit 0
+ if [[ "$status" != "" ]] ; then
+ echo "ERROR: can't run in a workspace that contains the following modifications"
+ echo "$status"
+ cleanupAndExit 1
fi
else
cd $BASEDIR