equal
deleted
inserted
replaced
22 questions. |
22 questions. |
23 --> |
23 --> |
24 <project name="nashorn-benchmarks" default="all" basedir=".."> |
24 <project name="nashorn-benchmarks" default="all" basedir=".."> |
25 |
25 |
26 <target name="octane-init" depends="jar"> |
26 <target name="octane-init" depends="jar"> |
27 <fileset id="octane-set" |
27 <property name="octane-tests" value="box2d code-load crypto deltablue earley-boyer gbemu navier-stokes pdfjs raytrace regexp richards splay"/> |
28 dir="${octane-test-sys-prop.test.js.roots}" |
28 </target> |
29 excludes="${octane-test-sys-prop.test.js.exclude.list}"> |
29 |
30 <include name="*.js"/> |
30 <!-- ignore benchmarks where rhino crashes --> |
31 </fileset> |
31 <target name="octane-init-rhino" depends="jar"> |
32 <pathconvert pathsep=" " property="octane-tests" refid="octane-set"/> |
32 <property name="octane-tests" value="box2d code-load crypto deltablue earley-boyer gbemu navier-stokes raytrace regexp richards splay"/> |
33 </target> |
33 </target> |
34 |
|
35 |
34 |
36 <!-- box2d --> |
35 <!-- box2d --> |
37 <target name="octane-box2d" depends="jar"> |
36 <target name="octane-box2d" depends="jar"> |
38 <antcall target="run-octane"> |
37 <antcall target="run-octane"> |
39 <param name="octane-tests" value="box2d"/> |
38 <param name="octane-tests" value="box2d"/> |
318 <target name="octane-v8" depends="octane-init"> |
317 <target name="octane-v8" depends="octane-init"> |
319 <antcall target="run-octane-v8"/> |
318 <antcall target="run-octane-v8"/> |
320 </target> |
319 </target> |
321 |
320 |
322 <!-- run octane benchmarks using Rhino as runtime --> |
321 <!-- run octane benchmarks using Rhino as runtime --> |
323 <target name="octane-rhino" depends="octane-init"> |
322 <target name="octane-rhino" depends="octane-init-rhino"> |
324 <antcall target="run-octane-rhino"/> |
323 <antcall target="run-octane-rhino"/> |
325 </target> |
324 </target> |
326 |
325 |
327 <target name="run-octane"> |
326 <target name="run-octane"> |
328 <java classname="${nashorn.shell.tool}" |
327 <java classname="${nashorn.shell.tool}" |