Return-Path: Delivered-To: apmail-db-derby-commits-archive@www.apache.org Received: (qmail 86256 invoked from network); 20 May 2005 22:44:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 20 May 2005 22:44:10 -0000 Received: (qmail 25640 invoked by uid 500); 20 May 2005 22:44:09 -0000 Delivered-To: apmail-db-derby-commits-archive@db.apache.org Received: (qmail 25584 invoked by uid 500); 20 May 2005 22:44:09 -0000 Mailing-List: contact derby-commits-help@db.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: "Derby Development" List-Id: Delivered-To: mailing list derby-commits@db.apache.org Received: (qmail 25571 invoked by uid 500); 20 May 2005 22:44:09 -0000 Delivered-To: apmail-incubator-derby-cvs@incubator.apache.org Received: (qmail 25566 invoked by uid 99); 20 May 2005 22:44:08 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Fri, 20 May 2005 15:44:07 -0700 Received: (qmail 86180 invoked by uid 65534); 20 May 2005 22:43:40 -0000 Message-ID: <20050520224340.86179.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Subject: svn commit: r171164 - /incubator/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/derbynet/testconnection.java Date: Fri, 20 May 2005 22:43:40 -0000 To: derby-cvs@incubator.apache.org From: fuzzylogic@apache.org X-Mailer: svnmailer-1.0.0-dev X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: fuzzylogic Date: Fri May 20 15:43:39 2005 New Revision: 171164 URL: http://svn.apache.org/viewcvs?rev=3D171164&view=3Drev Log: Fix timing issue with testconnection.java on Unix platforms. waitFor() testconnection process to end before calling exitValue() on that Process. Committed for David Van Couvering Modified: incubator/derby/code/trunk/java/testing/org/apache/derbyTesting/functio= nTests/tests/derbynet/testconnection.java Modified: incubator/derby/code/trunk/java/testing/org/apache/derbyTesting/f= unctionTests/tests/derbynet/testconnection.java URL: http://svn.apache.org/viewcvs/incubator/derby/code/trunk/java/testing/= org/apache/derbyTesting/functionTests/tests/derbynet/testconnection.java?re= v=3D171164&r1=3D171163&r2=3D171164&view=3Ddiff =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- incubator/derby/code/trunk/java/testing/org/apache/derbyTesting/functio= nTests/tests/derbynet/testconnection.java (original) +++ incubator/derby/code/trunk/java/testing/org/apache/derbyTesting/functio= nTests/tests/derbynet/testconnection.java Fri May 20 15:43:39 2005 @@ -115,6 +115,9 @@ prout.Wait(); prerr.Wait(); =20 + // wait until the process exits + pr.waitFor(); + =20 // DERBY-214 if ( pr.exitValue() !=3D expectedExitCode ) {