Return-Path: Delivered-To: apmail-db-derby-commits-archive@www.apache.org Received: (qmail 46159 invoked from network); 13 Nov 2007 00:34:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 13 Nov 2007 00:34:51 -0000 Received: (qmail 1472 invoked by uid 500); 13 Nov 2007 00:34:39 -0000 Delivered-To: apmail-db-derby-commits-archive@db.apache.org Received: (qmail 1406 invoked by uid 500); 13 Nov 2007 00:34:39 -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 1395 invoked by uid 99); 13 Nov 2007 00:34:39 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Nov 2007 16:34:39 -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; Tue, 13 Nov 2007 00:35:36 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id BAEE41A9842; Mon, 12 Nov 2007 16:34:28 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r594365 - /db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/SecurityPolicyReloadingTest.java Date: Tue, 13 Nov 2007 00:34:28 -0000 To: derby-commits@db.apache.org From: kmarsden@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071113003428.BAEE41A9842@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: kmarsden Date: Mon Nov 12 16:34:26 2007 New Revision: 594365 URL: http://svn.apache.org/viewvc?rev=594365&view=rev Log: Disable installation of default testing policy file because test installs its own initial policy file. Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/SecurityPolicyReloadingTest.java Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/SecurityPolicyReloadingTest.java URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/SecurityPolicyReloadingTest.java?rev=594365&r1=594364&r2=594365&view=diff ============================================================================== --- db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/SecurityPolicyReloadingTest.java (original) +++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/SecurityPolicyReloadingTest.java Mon Nov 12 16:34:26 2007 @@ -176,6 +176,9 @@ new String[] { undecoratedTest.makeTargetPolicyStub() } ); + // No need to run with default testing policy file because we install our + // own initial policy file. + test = SecurityManagerSetup.noSecurityManager(test); return test; }