You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by my...@apache.org on 2013/10/16 02:57:35 UTC

svn commit: r1532613 - /db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/util/derby_tests.policy

Author: myrnavl
Date: Wed Oct 16 00:57:34 2013
New Revision: 1532613

URL: http://svn.apache.org/r1532613
Log:
DERBY-2446; Remove notion of the old test harness from TestConfiguration
  removing a now unnecessary line from the test policy file

Modified:
    db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/util/derby_tests.policy

Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/util/derby_tests.policy
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/util/derby_tests.policy?rev=1532613&r1=1532612&r2=1532613&view=diff
==============================================================================
--- db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/util/derby_tests.policy (original)
+++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/util/derby_tests.policy Wed Oct 16 00:57:34 2013
@@ -388,14 +388,6 @@ grant codeBase "${derbyTesting.junit}" {
     permission java.io.FilePermission "${user.dir}${/}*", "write";
 };
 
-// Due to a problem running tests/derbynet/CompatibilityTest in the old test
-// harness, permission to read junit.properties is granted to all. This can be 
-// removed when CompatibilityTest is rewritten to conform to our current Junit
-// usage. See DERBY-2076.
-grant {
-    permission java.io.FilePermission "${user.home}${/}junit.properties", "read";
-};
-
 // Ant's junit runner requires setOut to redirect the System output streams
 // to the forked JVM used when running junit tests inside Ant. Ant requires
 // forking the JVM if you want to run tests in a different directory than the