Return-Path: X-Original-To: apmail-db-derby-commits-archive@www.apache.org Delivered-To: apmail-db-derby-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 066694751 for ; Tue, 17 May 2011 19:17:50 +0000 (UTC) Received: (qmail 3648 invoked by uid 500); 17 May 2011 19:17:49 -0000 Delivered-To: apmail-db-derby-commits-archive@db.apache.org Received: (qmail 3621 invoked by uid 500); 17 May 2011 19:17:49 -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 3614 invoked by uid 99); 17 May 2011 19:17:49 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 May 2011 19:17:49 +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; Tue, 17 May 2011 19:17:47 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 84EDB23888FE; Tue, 17 May 2011 19:17:26 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1104477 - in /db/derby/code/branches/10.7: ./ java/testing/org/apache/derbyTesting/junit/NetworkServerTestSetup.java Date: Tue, 17 May 2011 19:17:26 -0000 To: derby-commits@db.apache.org From: kmarsden@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110517191726.84EDB23888FE@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: kmarsden Date: Tue May 17 19:17:26 2011 New Revision: 1104477 URL: http://svn.apache.org/viewvc?rev=1104477&view=rev Log: port revision #1085078 from trunk from DERBY-5141 Add some verbosity to NetworkServerTestSetup to show the server start command with -Dderby.tests.debug=true. This does not fix the issue. Modified: db/derby/code/branches/10.7/ (props changed) db/derby/code/branches/10.7/java/testing/org/apache/derbyTesting/junit/NetworkServerTestSetup.java Propchange: db/derby/code/branches/10.7/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Tue May 17 19:17:26 2011 @@ -1 +1 @@ -/db/derby/code/trunk:1035603,1036769,1038514,1038813,1039084,1039268,1040658,1041338,1043227,1043389,1044096,1051026,1053724,1055169,1059888,1060480,1062096,1063809,1065061,1066290,1067250,1067357,1069661,1071463,1071886,1076387,1078461,1078693,1081455,1091000,1097247 +/db/derby/code/trunk:1035603,1036769,1038514,1038813,1039084,1039268,1040658,1041338,1043227,1043389,1044096,1051026,1053724,1055169,1059888,1060480,1062096,1063809,1065061,1066290,1067250,1067357,1069661,1071463,1071886,1076387,1078461,1078693,1081455,1085078,1091000,1097247 Modified: db/derby/code/branches/10.7/java/testing/org/apache/derbyTesting/junit/NetworkServerTestSetup.java URL: http://svn.apache.org/viewvc/db/derby/code/branches/10.7/java/testing/org/apache/derbyTesting/junit/NetworkServerTestSetup.java?rev=1104477&r1=1104476&r2=1104477&view=diff ============================================================================== --- db/derby/code/branches/10.7/java/testing/org/apache/derbyTesting/junit/NetworkServerTestSetup.java (original) +++ db/derby/code/branches/10.7/java/testing/org/apache/derbyTesting/junit/NetworkServerTestSetup.java Tue May 17 19:17:26 2011 @@ -33,6 +33,7 @@ import java.security.PrivilegedException import java.util.ArrayList; import junit.framework.Test; import org.apache.derby.drda.NetworkServerControl; +import org.apache.derbyTesting.junit.BaseTestCase; /** * Test decorator that starts the network server on startup @@ -320,12 +321,13 @@ final public class NetworkServerTestSetu final String[] command = new String[ al.size() ]; al.toArray(command); - /* System.out.println( "XXX server startup command = "); + String startcommand =""; for (int i = 0 ; i < command.length ; i++) { - System.out.print( command[i] + " " ); + startcommand += command[i] + " "; } - System.out.println(); - */ + + BaseTestCase.println("XXX server startup command = " + + startcommand + "\n"); Process serverProcess;