Return-Path: X-Original-To: apmail-cayenne-commits-archive@www.apache.org Delivered-To: apmail-cayenne-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 589FBD861 for ; Sat, 20 Oct 2012 23:54:18 +0000 (UTC) Received: (qmail 58941 invoked by uid 500); 20 Oct 2012 23:54:18 -0000 Delivered-To: apmail-cayenne-commits-archive@cayenne.apache.org Received: (qmail 58922 invoked by uid 500); 20 Oct 2012 23:54:18 -0000 Mailing-List: contact commits-help@cayenne.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cayenne.apache.org Delivered-To: mailing list commits@cayenne.apache.org Received: (qmail 58915 invoked by uid 99); 20 Oct 2012 23:54:18 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Oct 2012 23:54:18 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Oct 2012 23:54:17 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 159A823888E4 for ; Sat, 20 Oct 2012 23:53:34 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1400537 - /cayenne/main/trunk/framework/cayenne-jdk1.5-unpublished/src/test/java/org/apache/cayenne/access/DataContextDataChannelEventsTest.java Date: Sat, 20 Oct 2012 23:53:33 -0000 To: commits@cayenne.apache.org From: aadamchik@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20121020235334.159A823888E4@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: aadamchik Date: Sat Oct 20 23:53:33 2012 New Revision: 1400537 URL: http://svn.apache.org/viewvc?rev=1400537&view=rev Log: allowing for slower hardware to finish the deadlock test Modified: cayenne/main/trunk/framework/cayenne-jdk1.5-unpublished/src/test/java/org/apache/cayenne/access/DataContextDataChannelEventsTest.java Modified: cayenne/main/trunk/framework/cayenne-jdk1.5-unpublished/src/test/java/org/apache/cayenne/access/DataContextDataChannelEventsTest.java URL: http://svn.apache.org/viewvc/cayenne/main/trunk/framework/cayenne-jdk1.5-unpublished/src/test/java/org/apache/cayenne/access/DataContextDataChannelEventsTest.java?rev=1400537&r1=1400536&r2=1400537&view=diff ============================================================================== --- cayenne/main/trunk/framework/cayenne-jdk1.5-unpublished/src/test/java/org/apache/cayenne/access/DataContextDataChannelEventsTest.java (original) +++ cayenne/main/trunk/framework/cayenne-jdk1.5-unpublished/src/test/java/org/apache/cayenne/access/DataContextDataChannelEventsTest.java Sat Oct 20 23:53:33 2012 @@ -65,7 +65,7 @@ public class DataContextDataChannelEvent assertFalse(listener.graphChanged); assertFalse(listener.graphRolledBack); } - }.runTest(1000); + }.runTest(10000); } @@ -88,7 +88,7 @@ public class DataContextDataChannelEvent assertFalse(listener.graphChanged); assertTrue(listener.graphRolledBack); } - }.runTest(1000); + }.runTest(10000); } public void testChangeEventOnChildChange() throws Exception { @@ -114,7 +114,7 @@ public class DataContextDataChannelEvent assertTrue(listener.graphChanged); assertFalse(listener.graphRolledBack); } - }.runTest(1000); + }.runTest(10000); } public void testChangeEventOnPeerChange() throws Exception { @@ -138,7 +138,7 @@ public class DataContextDataChannelEvent assertTrue(listener.graphChanged); assertFalse(listener.graphRolledBack); } - }.runTest(1000); + }.runTest(10000); } public void testChangeEventOnPeerChangeSecondNestingLevel() throws Exception { @@ -166,7 +166,7 @@ public class DataContextDataChannelEvent assertTrue(listener.graphChanged); assertFalse(listener.graphRolledBack); } - }.runTest(1000); + }.runTest(10000); } class MockChannelListener implements DataChannelListener {