Return-Path: Delivered-To: apmail-incubator-harmony-dev-archive@www.apache.org Received: (qmail 9330 invoked from network); 14 Sep 2006 16:07:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 14 Sep 2006 16:07:17 -0000 Received: (qmail 55531 invoked by uid 500); 14 Sep 2006 16:07:14 -0000 Delivered-To: apmail-incubator-harmony-dev-archive@incubator.apache.org Received: (qmail 55481 invoked by uid 500); 14 Sep 2006 16:07:14 -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 55470 invoked by uid 99); 14 Sep 2006 16:07:14 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (140.211.166.84) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 14 Sep 2006 09:07:14 -0700 Authentication-Results: idunn.apache.osuosl.org smtp.mail=mloenko@gmail.com; spf=pass Authentication-Results: idunn.apache.osuosl.org header.from=mloenko@gmail.com; domainkeys=good X-ASF-Spam-Status: No, hits=0.4 required=5.0 tests=DNS_FROM_RFC_ABUSE,RCVD_BY_IP Received-SPF: pass (idunn.apache.osuosl.org: domain gmail.com designates 64.233.184.225 as permitted sender) DomainKey-Status: good X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 Received: from ([64.233.184.225:18929] helo=wr-out-0506.google.com) by idunn.apache.osuosl.org (ecelerity 2.1 r(10620)) with ESMTP id 50/40-06152-4CD79054 for ; Thu, 14 Sep 2006 09:06:39 -0700 Received: by wr-out-0506.google.com with SMTP id 58so1117550wri for ; Thu, 14 Sep 2006 09:05:22 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=PuoeKk6KAbLalClyur3k0l3D6W6M5LdMiY48ALSlFm9n5rPCrz9qyCWc10w4+ejDlP4cdsBuQtYnr9xOQ1ganbEggxsNVm0zh3HrkCHHRz8QEGkLe+YfxGuwgCg+rco/HZMuISBm/NL9z8d3J6AW7tBm1jl5ugJSDDSXPiU5w8M= Received: by 10.65.51.16 with SMTP id d16mr10241114qbk; Thu, 14 Sep 2006 06:55:05 -0700 (PDT) Received: by 10.65.93.12 with HTTP; Thu, 14 Sep 2006 06:55:05 -0700 (PDT) Message-ID: <906dd82e0609140655n65949f68q2345c673224639d7@mail.gmail.com> Date: Thu, 14 Sep 2006 20:55:05 +0700 From: "Mikhail Loenko" To: harmony-dev@incubator.apache.org Subject: Re: [classlib][testing] give DRLVM a chance! In-Reply-To: <45095E35.6050601@googlemail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <906dd82e0609140629j3b3d5c09p807f005c617c5a47@mail.gmail.com> <45095E35.6050601@googlemail.com> X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N No sorry for unclear wording, the tests passed on IBM VME 2006/9/14, Oliver Deakin : > Does this mean we could no longer use the IBM VME to run the tests? > > Regards, > Oliver > > Mikhail Loenko wrote: > > There are two options supported by Support_Exec: IBM and Sun > > > > I'd like to apply this change (remove "IBM" branch and leave the Sun > > branch for > > all VMs): > > > > > > Index: > > C:/WS/Experiments/support/src/test/java/tests/support/Support_Exec.java > > =================================================================== > > --- > > C:/WS/Experiments/support/src/test/java/tests/support/Support_Exec.java > > (revision > > 442625) > > +++ > > C:/WS/Experiments/support/src/test/java/tests/support/Support_Exec.java > > (working > > copy) > > @@ -68,7 +68,7 @@ > > if (classpath != null) > > for (int i = 0; i < classpath.length; i++) > > classPathString += File.pathSeparator + classpath[i]; > > - if (vendor.indexOf("Sun") != -1) { > > + > > baseArgs = 3; > > execArgs = new String[baseArgs + args.length]; > > String executable = System.getProperty("java.home"); > > @@ -79,35 +79,6 @@ > > execArgs[1] = "-cp"; > > execArgs[2] = "\"" + System.getProperty("java.class.path") > > + classPathString + "\""; > > - } else if (vendor.indexOf("IBM") != -1) { > > - baseArgs = 5; > > - String full = System.getProperty("java.fullversion"); > > - if (full != null && full.indexOf("(JIT disabled") >= 0) > > - baseArgs++; > > - execArgs = new String[baseArgs + args.length]; > > - execArgs[0] = System.getProperty("com.ibm.oti.vm.exe"); > > - // stop passing -jcl:null into the VM > > - // WARNING: empty string in args array may confuse > > - // Process.exec(String[] cmdarray) on Linux so > > - // Process.exec(String command) is used instead > > - execArgs[1] = ""; > > - if (onUnix) { > > - execArgs[2] = "-Xbootclasspath:" > > - + > > System.getProperty("org.apache.harmony.boot.class.path"); > > - execArgs[3] = "-cp"; > > - execArgs[4] = System.getProperty("java.class.path") > > - + classPathString; > > - } else { > > - execArgs[2] = "\"-Xbootclasspath:" > > - + > > System.getProperty("org.apache.harmony.boot.class.path") > > - + "\""; > > - execArgs[3] = "-cp"; > > - execArgs[4] = "\"" + > > System.getProperty("java.class.path") > > - + classPathString + "\""; > > - } > > - if (baseArgs > 5) > > - execArgs[5] = "-Xint"; > > - } > > for (int i = 0; i < args.length; i++) > > execArgs[baseArgs + i] = args[i]; > > StringBuffer command = new StringBuffer(execArgs[0]); > > > > > > > > Tests pass on WinXP and Linux. Objections? > > > > Thanks, > > Mikhail > > > > --------------------------------------------------------------------- > > 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 > > > > > > -- > Oliver Deakin > IBM United Kingdom Limited > > > --------------------------------------------------------------------- > 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 > > --------------------------------------------------------------------- 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