Return-Path: Delivered-To: apmail-db-derby-commits-archive@www.apache.org Received: (qmail 49146 invoked from network); 24 Mar 2011 19:13:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 24 Mar 2011 19:13:36 -0000 Received: (qmail 63999 invoked by uid 500); 24 Mar 2011 19:13:36 -0000 Delivered-To: apmail-db-derby-commits-archive@db.apache.org Received: (qmail 63974 invoked by uid 500); 24 Mar 2011 19:13:36 -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 63967 invoked by uid 99); 24 Mar 2011 19:13:36 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 24 Mar 2011 19:13:36 +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; Thu, 24 Mar 2011 19:13:35 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 52ACF23888CB; Thu, 24 Mar 2011 19:13:13 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1085078 - /db/derby/code/trunk/java/testing/org/apache/derbyTesting/junit/NetworkServerTestSetup.java Date: Thu, 24 Mar 2011 19:13:13 -0000 To: derby-commits@db.apache.org From: kmarsden@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110324191313.52ACF23888CB@eris.apache.org> Author: kmarsden Date: Thu Mar 24 19:13:13 2011 New Revision: 1085078 URL: http://svn.apache.org/viewvc?rev=1085078&view=rev Log: DERBY-5141 SSLTest fails with java.net.SocketException: Default SSL context init failed: null 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/trunk/java/testing/org/apache/derbyTesting/junit/NetworkServerTestSetup.java Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/junit/NetworkServerTestSetup.java URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/junit/NetworkServerTestSetup.java?rev=1085078&r1=1085077&r2=1085078&view=diff ============================================================================== --- db/derby/code/trunk/java/testing/org/apache/derbyTesting/junit/NetworkServerTestSetup.java (original) +++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/junit/NetworkServerTestSetup.java Thu Mar 24 19:13:13 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;