Skip to content

Commit

Permalink
Updated build.xml to actually *use* the TEST_DIR constant it defines.
Browse files Browse the repository at this point in the history
  • Loading branch information
gleneivey committed Apr 13, 2010
1 parent 30ebf31 commit baa4ac7
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions build.xml
Expand Up @@ -36,7 +36,7 @@
location="${PREFIX}/docs"
description="Folder for docs target" />
<property name="TEST_DIR"
location="${PREFIX}/test"
location="${basedir}/test/specs"
description="Folder for test target" />
<property name="DIST_DIR"
location="${PREFIX}/"
Expand Down Expand Up @@ -174,7 +174,7 @@
<java fork="true"
jar="${RHINO_JAR}"
failonerror="true">
<arg value="test/specs/platform/rhino.js"/>
<arg value="${TEST_DIR}/platform/rhino.js"/>
<jvmarg value="-Dfile.encoding=utf-8"/>
<jvmarg value="-Xmx256m"/>
</java>
Expand Down Expand Up @@ -211,7 +211,7 @@
<java fork="true"
jar="${RHINO_JAR}"
failonerror="true">
<arg value="test/specs/console/boot.js"/>
<arg value="${TEST_DIR}/console/boot.js"/>
<jvmarg value="-Dfile.encoding=utf-8"/>
<jvmarg value="-Xmx256m"/>
</java>
Expand Down Expand Up @@ -274,7 +274,7 @@
<java fork="true"
jar="${RHINO_JAR}"
failonerror="true">
<arg value="test/specs/dom/boot.js"/>
<arg value="${TEST_DIR}/dom/boot.js"/>
<jvmarg value="-Dfile.encoding=utf-8"/>
<jvmarg value="-Xmx256m"/>
</java>
Expand Down Expand Up @@ -321,7 +321,7 @@
<java fork="true"
jar="${RHINO_JAR}"
failonerror="true">
<arg value="test/specs/event/boot.js"/>
<arg value="${TEST_DIR}/event/boot.js"/>
<jvmarg value="-Dfile.encoding=utf-8"/>
<jvmarg value="-Xmx256m"/>
</java>
Expand Down Expand Up @@ -358,7 +358,7 @@
<java fork="true"
jar="${RHINO_JAR}"
failonerror="true">
<arg value="test/specs/timer/boot.js"/>
<arg value="${TEST_DIR}/timer/boot.js"/>
<jvmarg value="-Dfile.encoding=utf-8"/>
<jvmarg value="-Xmx256m"/>
</java>
Expand Down Expand Up @@ -453,7 +453,7 @@
<java fork="true"
jar="${RHINO_JAR}"
failonerror="true">
<arg value="test/specs/html/boot.js"/>
<arg value="${TEST_DIR}/html/boot.js"/>
<jvmarg value="-Dfile.encoding=utf-8"/>
<jvmarg value="-Xmx256m"/>
</java>
Expand Down Expand Up @@ -499,7 +499,7 @@
failonerror="true">
<arg value="-opt"/>
<arg value="-1"/>
<arg value="test/specs/parser/boot.js"/>
<arg value="${TEST_DIR}/parser/boot.js"/>
<jvmarg value="-Dfile.encoding=utf-8"/>
<jvmarg value="-Xmx256m"/>
</java>
Expand Down Expand Up @@ -543,7 +543,7 @@
<java fork="true"
jar="${RHINO_JAR}"
failonerror="true">
<arg value="test/specs/xhr/boot.js"/>
<arg value="${TEST_DIR}/xhr/boot.js"/>
<jvmarg value="-Dfile.encoding=utf-8"/>
<jvmarg value="-Xmx256m"/>
</java>
Expand Down Expand Up @@ -586,7 +586,7 @@
<java fork="true"
jar="${RHINO_JAR}"
failonerror="true">
<arg value="test/specs/css/boot.js"/>
<arg value="${TEST_DIR}/css/boot.js"/>
<jvmarg value="-Dfile.encoding=utf-8"/>
<jvmarg value="-Xmx256m"/>
</java>
Expand Down Expand Up @@ -632,7 +632,7 @@
<java fork="true"
jar="${RHINO_JAR}"
failonerror="true">
<arg value="test/specs/window/boot.js"/>
<arg value="${TEST_DIR}/window/boot.js"/>
<jvmarg value="-Dfile.encoding=utf-8"/>
<jvmarg value="-Xmx256m"/>
</java>
Expand Down

0 comments on commit baa4ac7

Please sign in to comment.