HADOOP-9037. Bug in test-patch.sh and precommit build process. Contributed by Kihwal Lee

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1409274 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason Darrell Lowe 2012-11-14 17:49:02 +00:00
parent b2456ca3b8
commit 9b9edd9b47
2 changed files with 4 additions and 1 deletions

View File

@ -710,7 +710,7 @@ runTests () {
ordered_modules="$ordered_modules $module"
fi
done
if [ -n $hdfs_modules ]; then
if [ -n "$hdfs_modules" ]; then
ordered_modules="$ordered_modules $hdfs_modules"
if [[ $building_common -eq 0 ]]; then
echo " Building hadoop-common with -Pnative in order to provide \

View File

@ -277,6 +277,9 @@ Trunk (Unreleased)
HADOOP-8974. TestDFVariations fails on Windows. (Chris Nauroth via suresh)
HADOOP-9037. Bug in test-patch.sh and precommit build process (Kihwal Lee
via jlowe)
OPTIMIZATIONS
HADOOP-7761. Improve the performance of raw comparisons. (todd)