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 ka...@apache.org on 2013/06/21 10:16:35 UTC

svn commit: r1495318 - /db/derby/code/branches/10.9/java/testing/org/apache/derbyTesting/functionTests/tests/engine/build.xml

Author: kahatlen
Date: Fri Jun 21 08:16:35 2013
New Revision: 1495318

URL: http://svn.apache.org/r1495318
Log:
DERBY-6224: Many test failures on latest JDK 8 EA build because of missing SQLPermission

Fix broken build.

Modified:
    db/derby/code/branches/10.9/java/testing/org/apache/derbyTesting/functionTests/tests/engine/build.xml

Modified: db/derby/code/branches/10.9/java/testing/org/apache/derbyTesting/functionTests/tests/engine/build.xml
URL: http://svn.apache.org/viewvc/db/derby/code/branches/10.9/java/testing/org/apache/derbyTesting/functionTests/tests/engine/build.xml?rev=1495318&r1=1495317&r2=1495318&view=diff
==============================================================================
--- db/derby/code/branches/10.9/java/testing/org/apache/derbyTesting/functionTests/tests/engine/build.xml (original)
+++ db/derby/code/branches/10.9/java/testing/org/apache/derbyTesting/functionTests/tests/engine/build.xml Fri Jun 21 08:16:35 2013
@@ -65,7 +65,7 @@
     <mkdir dir="${out.dir}/${derby.testing.functest.dir}/tests/engine"/>
   </target>
 
-  <target name="compilet1" depends="compile_jdk14">
+  <target name="compilet1" depends="compile_java5">
      <javac
         source="1.4"
         target="1.4"
@@ -88,10 +88,10 @@
      </javac>
   </target>
 
-  <target name="compile_jdk14">
+  <target name="compile_java5">
      <javac
-        source="1.4"
-        target="1.4"
+        source="1.5"
+        target="1.5"
         bootclasspath="${empty}"
         nowarn="on"
         debug="true"
@@ -103,7 +103,7 @@
         srcdir="${derby.testing.src.dir}"
         destdir="${out.dir}">
         <classpath>
-           <pathelement path="${java14compile.classpath}"/>
+           <pathelement path="${java15compile.classpath}"/>
            <pathelement path="${junit}"/>
         </classpath>
         <include name="${this.dir}/ShutdownWithoutDeregisterPermissionTest.java"/>