Return-Path: Delivered-To: apmail-harmony-dev-archive@www.apache.org Received: (qmail 80367 invoked from network); 25 Nov 2009 13:41:24 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 25 Nov 2009 13:41:24 -0000 Received: (qmail 86263 invoked by uid 500); 25 Nov 2009 13:41:23 -0000 Delivered-To: apmail-harmony-dev-archive@harmony.apache.org Received: (qmail 86012 invoked by uid 500); 25 Nov 2009 13:41:21 -0000 Mailing-List: contact dev-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list dev@harmony.apache.org Received: (qmail 86001 invoked by uid 99); 25 Nov 2009 13:41:21 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 25 Nov 2009 13:41:21 +0000 X-ASF-Spam-Status: No, hits=-2.4 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of t.p.ellison@gmail.com designates 209.85.218.210 as permitted sender) Received: from [209.85.218.210] (HELO mail-bw0-f210.google.com) (209.85.218.210) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 25 Nov 2009 13:41:19 +0000 Received: by bwz2 with SMTP id 2so7487280bwz.20 for ; Wed, 25 Nov 2009 05:40:58 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:subject:references:in-reply-to :x-enigmail-version:content-type:content-transfer-encoding; bh=NWmZAcaUOvJZRbNfFu2zoPypF+pocgMdWrEfRa0VE1Q=; b=b0wHngAnDyAqb4KA3okcOGaHad0WCzGmtWcazDaymykdaEeTj4dyLGd2FpOy1Ltx1R gdmOP6CRKLkc32N1o8d4zH1PsFg0JigLuXrG1mVQUCRLr5nfAdzyRojVjbpGHJHWEoHI kevIkQ8MnQZcWW/iFgYJ/Cm26fJhD3j8BghX4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:x-enigmail-version:content-type :content-transfer-encoding; b=AAZqfp88rCne0Cgf4GIyN3vnVv6bji/35LlbL712yKmiBtggj18FkyhnVvXjLiQnAx 8HDsX5rnrrj/6cHna6+39vmWqWXCpFIts1Xk+oNRndf62qKQh+JqW/gL8gyfvciuPcNK EaeZB31QeTK0GniWff7JcMN2R6Ws9Z06OEIDU= Received: by 10.204.20.82 with SMTP id e18mr3792961bkb.168.1259156457944; Wed, 25 Nov 2009 05:40:57 -0800 (PST) Received: from ?9.180.166.138? (gbibp9ph1--blueice3n1.emea.ibm.com [195.212.29.83]) by mx.google.com with ESMTPS id g28sm8605458fkg.38.2009.11.25.05.40.56 (version=SSLv3 cipher=RC4-MD5); Wed, 25 Nov 2009 05:40:57 -0800 (PST) Message-ID: <4B0D33E3.5090105@gmail.com> Date: Wed, 25 Nov 2009 13:40:51 +0000 From: Tim Ellison User-Agent: Thunderbird 2.0.0.23 (Windows/20090812) MIME-Version: 1.0 To: dev@harmony.apache.org Subject: [testing] tools failure (was: Re: [testing] M12 testing on Windows x86) References: <4B0BEE4F.1080601@gmail.com> In-Reply-To: <4B0BEE4F.1080601@gmail.com> X-Enigmail-Version: 0.96.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit On 24/Nov/2009 14:31, Tim Ellison wrote: > Name Tests Errors Failures > org.apache.harmony.tests.tools.javac 2 1 0 This is a failure caused by missing JAR files on the test classpath. We used to have explicit code to find and load JAR files from the tools.jar using reflection, and I changed that to put the JAR files on the manifest's Class-Path:. I messed it up. The classpath is set right for the command-line tool, but not for the JUnit test. I would like to fix it using this patch, Index: working_jdktools/modules/jdktools/META-INF/MANIFEST.MF =================================================================== --- working_jdktools/modules/jdktools/META-INF/MANIFEST.MF (revision 884022) +++ working_jdktools/modules/jdktools/META-INF/MANIFEST.MF (working copy) @@ -5,7 +5,10 @@ Implementation-Vendor: The Apache Software Foundation Implementation-Vendor-Id: org.apache.harmony Implementation-URL: http://harmony.apache.org -Class-Path: ecj-3.4.2.jar,jdi.jar,jdimodel.jar,bcel-5.2.jar +Class-Path: com.ibm.icu.base_3.6.1.v20070417.jar + ecj-3.4.2.jar + jdimodel.jar + jdtstub.jar Bundle-ManifestVersion: 2 Bundle-Name: Harmony Tools Bundle-SymbolicName: org.apache.harmony.tools Please could somebody review and approve this change. Regards, Tim