Return-Path: Delivered-To: apmail-incubator-harmony-dev-archive@www.apache.org Received: (qmail 92248 invoked from network); 6 Jun 2006 13:57:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 6 Jun 2006 13:57:12 -0000 Received: (qmail 22284 invoked by uid 500); 6 Jun 2006 13:57:08 -0000 Delivered-To: apmail-incubator-harmony-dev-archive@incubator.apache.org Received: (qmail 22220 invoked by uid 500); 6 Jun 2006 13:57:08 -0000 Mailing-List: contact harmony-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: harmony-dev@incubator.apache.org Delivered-To: mailing list harmony-dev@incubator.apache.org Received: (qmail 22204 invoked by uid 99); 6 Jun 2006 13:57:08 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Jun 2006 06:57:08 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: unknown (asf.osuosl.org: error in processing during lookup of archie@dellroad.org) Received: from [216.239.128.26] (HELO smtp.omnis.com) (216.239.128.26) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Jun 2006 06:57:07 -0700 Received: from [10.2.2.50] (24-158-230-170.dhcp.leds.al.charter.com [24.158.230.170]) by smtp-relay.omnis.com (Postfix) with ESMTP id CFFB91407D0B for ; Tue, 6 Jun 2006 06:56:41 -0700 (PDT) Message-ID: <44858996.5080003@dellroad.org> Date: Tue, 06 Jun 2006 08:56:38 -0500 From: Archie Cobbs User-Agent: Mozilla Thunderbird 1.0.8 (X11/20060411) X-Accept-Language: en-us, en MIME-Version: 1.0 To: harmony-dev@incubator.apache.org Subject: Re: jchevm status? References: <12385bbd0605131250y79aa7f50j325d472e97bc94b6@mail.gmail.com> <44720763.2020006@dellroad.org> <4dd1f3f00605221333xfb6d7bcl8c99dd531e5d681e@mail.gmail.com> <44723A3B.9080403@dellroad.org> <4dd1f3f00605300843m4fc7a585la3e96984affd9ac3@mail.gmail.com> <12385bbd0605300914g1c0c4959u5b4081ed5052088@mail.gmail.com> <448348BE.3040802@dellroad.org> <12385bbd0606050403m702863cv5e59ce1449fc4c7e@mail.gmail.com> <448438E7.10305@dellroad.org> <12385bbd0606050753r2a1a81b2o94aa098d11138e23@mail.gmail.com> <12385bbd0606051508w20d6878by91c56a48bfdfe810@mail.gmail.com> In-Reply-To: <12385bbd0606051508w20d6878by91c56a48bfdfe810@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Ivan Volosyuk wrote: > This test seems to pass ok, any way the problem in eclipse was fixed > by following change. (Sorry, do not have enough time to write the > test) I see now. .thanks. Should be fixed in r412122. FYI the test case depends on how the compiler compiles the bytecode. The test below would pass when using "javac" but fail with "jikes". Javac generates GETSTATIC FieldRes$FieldResInterface.FIELD while jikes generates GETSTATIC FieldRes$FieldResClass.FIELD. public class FieldRes { public static interface FieldResInterface { Object FIELD = new Object(); } public static class FieldResSuperclass implements FieldResInterface { } public static class FieldResClass extends FieldResSuperclass { } public static void main(String[] args) throws Exception { System.out.println(new FieldResClass().FIELD); } } -Archie __________________________________________________________________________ Archie Cobbs * CTO, Awarix * http://www.awarix.com --------------------------------------------------------------------- Terms of use : http://incubator.apache.org/harmony/mailing.html To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org For additional commands, e-mail: harmony-dev-help@incubator.apache.org