From 337e066bc3d669ec052c758ae6531747158ef84f Mon Sep 17 00:00:00 2001 From: Robert Joseph Evans Date: Mon, 14 Jan 2013 15:14:39 +0000 Subject: [PATCH] HADOOP-9202. test-patch.sh fails during mvn eclipse:eclipse if patch adds a new module to the build (Chris Nauroth via bobby) git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1432949 13f79535-47bb-0310-9956-ffa450edef68 --- dev-support/test-patch.sh | 4 ++-- hadoop-common-project/hadoop-common/CHANGES.txt | 7 +++++-- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/dev-support/test-patch.sh b/dev-support/test-patch.sh index 3800824a82..4653efdbda 100755 --- a/dev-support/test-patch.sh +++ b/dev-support/test-patch.sh @@ -980,12 +980,12 @@ fi (( RESULT = RESULT + $JAVAC_RET )) checkJavadocWarnings (( RESULT = RESULT + $? )) -checkEclipseGeneration -(( RESULT = RESULT + $? )) ### Checkstyle not implemented yet #checkStyle #(( RESULT = RESULT + $? )) buildAndInstall +checkEclipseGeneration +(( RESULT = RESULT + $? )) checkFindbugsWarnings (( RESULT = RESULT + $? )) checkReleaseAuditWarnings diff --git a/hadoop-common-project/hadoop-common/CHANGES.txt b/hadoop-common-project/hadoop-common/CHANGES.txt index 05ff9d1682..dd4605504f 100644 --- a/hadoop-common-project/hadoop-common/CHANGES.txt +++ b/hadoop-common-project/hadoop-common/CHANGES.txt @@ -308,10 +308,13 @@ Trunk (Unreleased) HADOOP-9131. Turn off TestLocalFileSystem#testListStatusWithColons on Windows. (Chris Nauroth via suresh) - HADOOP-8957 AbstractFileSystem#IsValidName should be overridden for + HADOOP-8957. AbstractFileSystem#IsValidName should be overridden for embedded file systems like ViewFs (Chris Nauroth via Sanjay Radia) - HADOOP-9139 improve killKdc.sh (Ivan A. Veselovsky via bobby) + HADOOP-9139. improve killKdc.sh (Ivan A. Veselovsky via bobby) + + HADOOP-9202. test-patch.sh fails during mvn eclipse:eclipse if patch adds + a new module to the build (Chris Nauroth via bobby) OPTIMIZATIONS