From dev-return-24700-apmail-harmony-dev-archive=harmony.apache.org@harmony.apache.org Mon Mar 05 04:47:21 2007 Return-Path: Delivered-To: apmail-harmony-dev-archive@www.apache.org Received: (qmail 46204 invoked from network); 5 Mar 2007 04:47:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 5 Mar 2007 04:47:20 -0000 Received: (qmail 71973 invoked by uid 500); 5 Mar 2007 04:47:23 -0000 Delivered-To: apmail-harmony-dev-archive@harmony.apache.org Received: (qmail 71944 invoked by uid 500); 5 Mar 2007 04:47:23 -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 71935 invoked by uid 99); 5 Mar 2007 04:47:23 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 04 Mar 2007 20:47:23 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of ivavladimir@gmail.com designates 64.233.182.188 as permitted sender) Received: from [64.233.182.188] (HELO nf-out-0910.google.com) (64.233.182.188) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 04 Mar 2007 20:47:14 -0800 Received: by nf-out-0910.google.com with SMTP id d4so1921146nfe for ; Sun, 04 Mar 2007 20:46:52 -0800 (PST) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=SS3cPLdot5+Y+hFyxHnaTKsCensy8W2OdIeuzDK3BmD40q9a+xR3Aki7npTIFoTOdVaXOMkQQPE8BJJRvi2CiHclwlZfklEI5E+mj2XODj5/ULThgj4NieoInkykix77GcK63IozIpqqQ7rDVZyu1qh8PmNxneX09fZdY3xi+MQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=KTvap0LHkNWxP3ZAOAgY9HEBYZdpa+KvVQw3fISUJs+FgsmJwnQ3zpoC8qB194Vq0ICZx0P/PyU8apXU6xAZZ7FqpYSm6rHT5Zdzdy8tZj4n0DpEabPTu6F1PAQeqBDnC5Otq9h09+IJ/6IPUjbI7C74AmtpTK3jETMQLko4oRc= Received: by 10.78.183.15 with SMTP id g15mr570647huf.1173070012004; Sun, 04 Mar 2007 20:46:52 -0800 (PST) Received: by 10.78.145.6 with HTTP; Sun, 4 Mar 2007 20:46:51 -0800 (PST) Message-ID: <7273946b0703042046i3f70ca49te750755e18d03b74@mail.gmail.com> Date: Mon, 5 Mar 2007 10:46:51 +0600 From: "Vladimir Ivanov" To: dev Subject: Re: [drlvm][testing] regression test run failed on Win/Lnx platforms due to H2086 test In-Reply-To: <7273946b0703041949q332b76b3l67d4873a511e6c63@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <7273946b0703041949q332b76b3l67d4873a511e6c63@mail.gmail.com> X-Virus-Checked: Checked by ClamAV on apache.org Actually, I don't understand the idea of test H2086. When the package name was added to test it started to fail due to "No tests found". When the test was converted to junit format (according to readme.txt) it started to fail with message: Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 1.594 sec Testcase: test(org.apache.harmony.drlvm.tests.regression.h2086.Test): Caused an ERROR Cannot load native java/util/concurrent/atomic/AtomicLong.VMSupportsCS8()Z java.lang.UnsatisfiedLinkError: Cannot load native java/util/concurrent/atomic/AtomicLong.VMSupportsCS8()Z at java.util.concurrent.atomic.AtomicLong.(AtomicLong.java:27) at org.apache.harmony.drlvm.tests.regression.h2086.Test.test(Test.java:10) at java.lang.reflect.VMReflection.invokeMethod(VMReflection.java) Caused by: java.lang.UnsatisfiedLinkError: java/util/concurrent/atomic/AtomicLong.VMSupportsCS8()Z at java.util.concurrent.atomic.AtomicLong.(AtomicLong.java:27) ... 14 more thanks, Vladimir Note, updated test looks like: --------------------------- package org.apache.harmony.drlvm.tests.regression.h2086; import junit.framework.TestCase; public class Test extends TestCase { public void test() { java.util.concurrent.atomic.AtomicLong al = new java.util.concurrent.atomic.AtomicLong(); } } ---------------------------- On 3/5/07, Vladimir Ivanov wrote: > Hello everybody, > CC reports failures of DRLVM reg.test due to fail of H2086 test. Note > this test is new in this suite. I suggest excluding this test up to > end of investigation. > > thanks, Vladimir >