Return-Path: Delivered-To: apmail-hadoop-mapreduce-commits-archive@minotaur.apache.org Received: (qmail 62823 invoked from network); 26 Nov 2010 10:00:12 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 26 Nov 2010 10:00:12 -0000 Received: (qmail 89357 invoked by uid 500); 26 Nov 2010 10:00:11 -0000 Delivered-To: apmail-hadoop-mapreduce-commits-archive@hadoop.apache.org Received: (qmail 89263 invoked by uid 500); 26 Nov 2010 10:00:10 -0000 Mailing-List: contact mapreduce-commits-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: mapreduce-dev@hadoop.apache.org Delivered-To: mailing list mapreduce-commits@hadoop.apache.org Received: (qmail 89255 invoked by uid 99); 26 Nov 2010 10:00:09 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Nov 2010 10:00:09 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Nov 2010 10:00:08 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 03E1523888EA; Fri, 26 Nov 2010 09:58:35 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1039288 - in /hadoop/mapreduce/branches/branch-0.22: CHANGES.txt src/contrib/build-contrib.xml src/contrib/build.xml src/contrib/streaming/build.xml src/test/aop/build/aop.xml Date: Fri, 26 Nov 2010 09:58:34 -0000 To: mapreduce-commits@hadoop.apache.org From: amareshwari@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20101126095835.03E1523888EA@eris.apache.org> Author: amareshwari Date: Fri Nov 26 09:58:34 2010 New Revision: 1039288 URL: http://svn.apache.org/viewvc?rev=1039288&view=rev Log: Merge -r 1039284:1039285 from trunk Modified: hadoop/mapreduce/branches/branch-0.22/CHANGES.txt hadoop/mapreduce/branches/branch-0.22/src/contrib/build-contrib.xml hadoop/mapreduce/branches/branch-0.22/src/contrib/build.xml hadoop/mapreduce/branches/branch-0.22/src/contrib/streaming/build.xml hadoop/mapreduce/branches/branch-0.22/src/test/aop/build/aop.xml Modified: hadoop/mapreduce/branches/branch-0.22/CHANGES.txt URL: http://svn.apache.org/viewvc/hadoop/mapreduce/branches/branch-0.22/CHANGES.txt?rev=1039288&r1=1039287&r2=1039288&view=diff ============================================================================== --- hadoop/mapreduce/branches/branch-0.22/CHANGES.txt (original) +++ hadoop/mapreduce/branches/branch-0.22/CHANGES.txt Fri Nov 26 09:58:34 2010 @@ -428,6 +428,9 @@ Release 0.21.1 - Unreleased MAPREDUCE-1905. Fixes Context.setStatus() and progress() apis. (amareshwari) + MAPREDUCE-1809. Ant build changes for Streaming system tests in contrib + projects. (Vinay Kumar Thota via amareshwari) + Release 0.21.0 - 2010-08-13 INCOMPATIBLE CHANGES Modified: hadoop/mapreduce/branches/branch-0.22/src/contrib/build-contrib.xml URL: http://svn.apache.org/viewvc/hadoop/mapreduce/branches/branch-0.22/src/contrib/build-contrib.xml?rev=1039288&r1=1039287&r2=1039288&view=diff ============================================================================== --- hadoop/mapreduce/branches/branch-0.22/src/contrib/build-contrib.xml (original) +++ hadoop/mapreduce/branches/branch-0.22/src/contrib/build-contrib.xml Fri Nov 26 09:58:34 2010 @@ -36,9 +36,16 @@ + + + + + + @@ -63,6 +70,10 @@ + + + @@ -87,10 +98,15 @@ + + + + + @@ -112,6 +128,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -128,6 +174,9 @@ + + + @@ -141,6 +190,7 @@ encoding="${build.encoding}" srcdir="${src.dir}" includes="**/*.java" + excludes="system/**/*.java" destdir="${build.classes}" debug="${javac.debug}" deprecation="${javac.deprecation}"> @@ -174,12 +224,28 @@ encoding="${build.encoding}" srcdir="${src.test}" includes="**/*.java" + excludes="system/**/*.java" destdir="${build.test}" debug="${javac.debug}"> + + + + + + + + + @@ -264,15 +330,133 @@ + includes="**/Test*.java" excludes="**/${test.exclude}.java, system/**/*.java" /> - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modified: hadoop/mapreduce/branches/branch-0.22/src/contrib/build.xml URL: http://svn.apache.org/viewvc/hadoop/mapreduce/branches/branch-0.22/src/contrib/build.xml?rev=1039288&r1=1039287&r2=1039288&view=diff ============================================================================== --- hadoop/mapreduce/branches/branch-0.22/src/contrib/build.xml (original) +++ hadoop/mapreduce/branches/branch-0.22/src/contrib/build.xml Fri Nov 26 09:58:34 2010 @@ -73,6 +73,29 @@ Tests failed! + + + + + + + + + + + + + + + + + + + + Tests failed! + + Modified: hadoop/mapreduce/branches/branch-0.22/src/contrib/streaming/build.xml URL: http://svn.apache.org/viewvc/hadoop/mapreduce/branches/branch-0.22/src/contrib/streaming/build.xml?rev=1039288&r1=1039287&r2=1039288&view=diff ============================================================================== --- hadoop/mapreduce/branches/branch-0.22/src/contrib/streaming/build.xml (original) +++ hadoop/mapreduce/branches/branch-0.22/src/contrib/streaming/build.xml Fri Nov 26 09:58:34 2010 @@ -43,4 +43,10 @@ to call at top-level: ant deploy-contrib + + + + + + Modified: hadoop/mapreduce/branches/branch-0.22/src/test/aop/build/aop.xml URL: http://svn.apache.org/viewvc/hadoop/mapreduce/branches/branch-0.22/src/test/aop/build/aop.xml?rev=1039288&r1=1039287&r2=1039288&view=diff ============================================================================== --- hadoop/mapreduce/branches/branch-0.22/src/test/aop/build/aop.xml (original) +++ hadoop/mapreduce/branches/branch-0.22/src/test/aop/build/aop.xml Fri Nov 26 09:58:34 2010 @@ -139,6 +139,14 @@ + + + + + + +