Return-Path: Delivered-To: apmail-hadoop-common-issues-archive@minotaur.apache.org Received: (qmail 10543 invoked from network); 17 Sep 2010 06:05:17 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 17 Sep 2010 06:05:17 -0000 Received: (qmail 4894 invoked by uid 500); 17 Sep 2010 06:05:16 -0000 Delivered-To: apmail-hadoop-common-issues-archive@hadoop.apache.org Received: (qmail 4567 invoked by uid 500); 17 Sep 2010 06:05:14 -0000 Mailing-List: contact common-issues-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: common-issues@hadoop.apache.org Delivered-To: mailing list common-issues@hadoop.apache.org Received: (qmail 4555 invoked by uid 99); 17 Sep 2010 06:05:14 -0000 Received: from Unknown (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 17 Sep 2010 06:05:14 +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.22] (HELO thor.apache.org) (140.211.11.22) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 17 Sep 2010 06:04:57 +0000 Received: from thor (localhost [127.0.0.1]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o8H64ZUb008741 for ; Fri, 17 Sep 2010 06:04:35 GMT Message-ID: <32699080.246441284703475531.JavaMail.jira@thor> Date: Fri, 17 Sep 2010 02:04:35 -0400 (EDT) From: "Vivek Mishra (JIRA)" To: common-issues@hadoop.apache.org Subject: [jira] Commented: (HADOOP-6956) compile-core-test In-Reply-To: <24811071.246351284703473133.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HADOOP-6956?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12910471#action_12910471 ] Vivek Mishra commented on HADOOP-6956: -------------------------------------- Change is to srcdir="${test.src.dir}" includes="**/org/apache/hadoop/**/*.java" Originally it is srcdir="${test.src.dir}/core" includes="org/apache/hadoop/**/*.java" Reason: compile-mapred-test fails as it requires test/system classes. Please review. > compile-core-test > ----------------- > > Key: HADOOP-6956 > URL: https://issues.apache.org/jira/browse/HADOOP-6956 > Project: Hadoop Common > Issue Type: Task > Components: build > Affects Versions: 0.21.0 > Reporter: Vivek Mishra > > Currently compile-core-test only compiles test/core classes. classes defined in test/system are required by Mapreduce project's test classes. It requires to make a minor change in common build.xml as given below: > Changed > encoding="${build.encoding}" > srcdir="${test.src.dir}" > includes="**/org/apache/hadoop/**/*.java" > destdir="${test.core.build.classes}" > debug="${javac.debug}" > optimize="${javac.optimize}" > target="${javac.version}" > source="${javac.version}" > deprecation="${javac.deprecation}"> > > > > Original: > encoding="${build.encoding}" > srcdir="${test.src.dir}/core" > includes="org/apache/hadoop/**/*.java" > destdir="${test.core.build.classes}" > debug="${javac.debug}" > optimize="${javac.optimize}" > target="${javac.version}" > source="${javac.version}" > deprecation="${javac.deprecation}"> > > > > change is to > srcdir="${test.src.dir}" > includes="**/org/apache/hadoop/**/*.java" > from original > srcdir="${test.src.dir}/core" > includes="org/apache/hadoop/**/*.java" > Please suggest. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.