Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 34153 invoked from network); 16 Jan 2008 17:13:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 16 Jan 2008 17:13:35 -0000 Received: (qmail 49781 invoked by uid 500); 16 Jan 2008 17:13:25 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 49681 invoked by uid 500); 16 Jan 2008 17:13:25 -0000 Mailing-List: contact commits-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 commits@harmony.apache.org Received: (qmail 49672 invoked by uid 99); 16 Jan 2008 17:13:25 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 Jan 2008 09:13:25 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 Jan 2008 17:13:19 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 3E7271A983E; Wed, 16 Jan 2008 09:13:11 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r612521 - in /harmony/enhanced/drlvm/trunk/src/test/regression/H4220: ./ Test.java run.test.xml Date: Wed, 16 Jan 2008 17:13:10 -0000 To: commits@harmony.apache.org From: gshimansky@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080116171311.3E7271A983E@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: gshimansky Date: Wed Jan 16 09:13:09 2008 New Revision: 612521 URL: http://svn.apache.org/viewvc?rev=612521&view=rev Log: Committed regression test from HARMONY-4220 Added: harmony/enhanced/drlvm/trunk/src/test/regression/H4220/ harmony/enhanced/drlvm/trunk/src/test/regression/H4220/Test.java (with props) harmony/enhanced/drlvm/trunk/src/test/regression/H4220/run.test.xml (with props) Added: harmony/enhanced/drlvm/trunk/src/test/regression/H4220/Test.java URL: http://svn.apache.org/viewvc/harmony/enhanced/drlvm/trunk/src/test/regression/H4220/Test.java?rev=612521&view=auto ============================================================================== --- harmony/enhanced/drlvm/trunk/src/test/regression/H4220/Test.java (added) +++ harmony/enhanced/drlvm/trunk/src/test/regression/H4220/Test.java Wed Jan 16 09:13:09 2008 @@ -0,0 +1,71 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.harmony.drlvm.tests.regression.h4220; + +import junit.framework.TestCase; + +public class Test extends TestCase { + + public static void main(String args[]) { + (new Test()).test(); + } + + Object waitForStart = new Object(); + Object waitForInterrupt = new Object(); + Object waitForFinish = new Object(); + Thread notifyThread = new NotifierThread(); + Thread interruptThread = new InterrupterThread(); + + public void test() { + synchronized(waitForStart){ + notifyThread.start(); + try { + waitForStart.wait(); + } catch (InterruptedException e) { + } + } + synchronized(waitForFinish){ + } + } + + class NotifierThread extends Thread { + public void run() { + synchronized(waitForFinish){ + synchronized(waitForStart){ + waitForStart.notifyAll(); + interruptThread.start(); + // If comment next line test will not hang + Thread.yield(); + try { + waitForStart.wait(); + } catch (InterruptedException e) { + System.out.println("Expected " + e); + return; + } + assertTrue("waitForStart missed interrupt", true); + } + } + } + } + + class InterrupterThread extends Thread { + public void run() { + notifyThread.interrupt(); + } + } +} Propchange: harmony/enhanced/drlvm/trunk/src/test/regression/H4220/Test.java ------------------------------------------------------------------------------ svn:eol-style = native Added: harmony/enhanced/drlvm/trunk/src/test/regression/H4220/run.test.xml URL: http://svn.apache.org/viewvc/harmony/enhanced/drlvm/trunk/src/test/regression/H4220/run.test.xml?rev=612521&view=auto ============================================================================== --- harmony/enhanced/drlvm/trunk/src/test/regression/H4220/run.test.xml (added) +++ harmony/enhanced/drlvm/trunk/src/test/regression/H4220/run.test.xml Wed Jan 16 09:13:09 2008 @@ -0,0 +1,22 @@ + + + + + + + + Propchange: harmony/enhanced/drlvm/trunk/src/test/regression/H4220/run.test.xml ------------------------------------------------------------------------------ svn:eol-style = native