From 9b9edd9b477decd32bda3a7635baf14bd557b5a4 Mon Sep 17 00:00:00 2001 From: Jason Darrell Lowe Date: Wed, 14 Nov 2012 17:49:02 +0000 Subject: [PATCH] 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 --- dev-support/test-patch.sh | 2 +- hadoop-common-project/hadoop-common/CHANGES.txt | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/dev-support/test-patch.sh b/dev-support/test-patch.sh index c051244b67..3800824a82 100755 --- a/dev-support/test-patch.sh +++ b/dev-support/test-patch.sh @@ -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 \ diff --git a/hadoop-common-project/hadoop-common/CHANGES.txt b/hadoop-common-project/hadoop-common/CHANGES.txt index ed3adbb3c7..1bc8809077 100644 --- a/hadoop-common-project/hadoop-common/CHANGES.txt +++ b/hadoop-common-project/hadoop-common/CHANGES.txt @@ -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)