233 |
fork="true"> |
fork="true"> |
234 |
<jvmarg value="-Xbootclasspath/p:@{classes}"/> |
<jvmarg value="-Xbootclasspath/p:@{classes}"/> |
235 |
<jvmarg line="@{jvmflags}"/> |
<jvmarg line="@{jvmflags}"/> |
236 |
|
|
237 |
|
<!-- ant -Djava.util.concurrent.ForkJoinPool.common.parallelism=1 test-tck --> |
238 |
|
<syspropertyset id="java.util.concurrent.ForkJoinPool-properties"> |
239 |
|
<propertyref prefix="java.util.concurrent.ForkJoinPool"/> |
240 |
|
</syspropertyset> |
241 |
|
|
242 |
<sysproperty key="jsr166.profileTests" value="${jsr166.profileTests}"/> |
<sysproperty key="jsr166.profileTests" value="${jsr166.profileTests}"/> |
243 |
<sysproperty key="jsr166.profileThreshold" value="${jsr166.profileThreshold}"/> |
<sysproperty key="jsr166.profileThreshold" value="${jsr166.profileThreshold}"/> |
244 |
<sysproperty key="jsr166.runsPerTest" value="${jsr166.runsPerTest}"/> |
<sysproperty key="jsr166.runsPerTest" value="${jsr166.runsPerTest}"/> |
433 |
classes="${product.jar}"/> |
classes="${product.jar}"/> |
434 |
</target> |
</target> |
435 |
|
|
436 |
|
<target name="test-tck-parallelism-1" |
437 |
|
description="Runs test-tck with given common pool parallelism"> |
438 |
|
<antcall target="test-tck"> |
439 |
|
<param name="java.util.concurrent.ForkJoinPool.common.parallelism" value="1"/> |
440 |
|
</antcall> |
441 |
|
</target> |
442 |
|
|
443 |
|
<target name="test-tck-parallelism-0" |
444 |
|
description="Runs test-tck with given common pool parallelism"> |
445 |
|
<antcall target="test-tck"> |
446 |
|
<param name="java.util.concurrent.ForkJoinPool.common.parallelism" value="0"/> |
447 |
|
</antcall> |
448 |
|
</target> |
449 |
|
|
450 |
<target name="test-jtreg" |
<target name="test-jtreg" |
451 |
depends="jar" |
depends="jar" |
452 |
description="Runs jtreg tests for main using the jtreg ant task"> |
description="Runs jtreg tests for main using the jtreg ant task"> |
457 |
</target> |
</target> |
458 |
|
|
459 |
<target name="test" |
<target name="test" |
460 |
depends="test-tck, test-jtreg" |
depends="test-tck, test-tck-parallelism-1, test-jtreg" |
461 |
description="Runs tck and jtreg tests for main"> |
description="Runs tck and jtreg tests for main"> |
462 |
</target> |
</target> |
463 |
|
|