Get shared java libraries from JAVA_LIBS; use resource_url instead of

application.root.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@863 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2002-01-16 03:00:37 +00:00
parent d4e2058ea6
commit dc00808761
+5 -2
View File
@@ -3,9 +3,12 @@
<!-- things you may want to change --> <!-- things you may want to change -->
<property name="build.compiler" value="jikes"/> <property name="build.compiler" value="jikes"/>
<property name="java.libraries" value="/usr/share/java"/>
<property name="junit.fork" value="true"/> <property name="junit.fork" value="true"/>
<!-- we want to access the environment -->
<property environment="env"/>
<property name="java.libraries" value="${env.JAVA_LIBS}"/>
<!-- things you probably don't want to change --> <!-- things you probably don't want to change -->
<property name="test.dir" value="."/> <property name="test.dir" value="."/>
<property name="src.dir" value="src/java"/> <property name="src.dir" value="src/java"/>
@@ -52,7 +55,7 @@
<junit printsummary="no" haltonfailure="yes" fork="${junit.fork}"> <junit printsummary="no" haltonfailure="yes" fork="${junit.fork}">
<classpath refid="classpath"/> <classpath refid="classpath"/>
<sysproperty key="test_dir" value="${test.dir}"/> <sysproperty key="test_dir" value="${test.dir}"/>
<sysproperty key="application.root" value="${test.dir}"/> <sysproperty key="resource_url" value="file:${test.dir}/rsrc"/>
<formatter type="brief" usefile="false"/> <formatter type="brief" usefile="false"/>
<batchtest> <batchtest>
<fileset dir="${src.dir}"> <fileset dir="${src.dir}">