22 |
$HOME/jdk/src/jdk8 |
$HOME/jdk/src/jdk8 |
23 |
where each of the above is a complete JDK source tree |
where each of the above is a complete JDK source tree |
24 |
(e.g. mercurial forest) or a symlink to same. |
(e.g. mercurial forest) or a symlink to same. |
25 |
|
As of 2013-02, the very latest lambda 8 jdk is needed for jdk8. |
26 |
------------------------------------------------------------------------------ |
------------------------------------------------------------------------------ |
27 |
</description> |
</description> |
28 |
|
|
175 |
<attribute name="workdir"/> |
<attribute name="workdir"/> |
176 |
<attribute name="classes"/> |
<attribute name="classes"/> |
177 |
<attribute name="jvmflags" default=""/> |
<attribute name="jvmflags" default=""/> |
178 |
|
<element name="javac-elements" optional="true"/> |
179 |
<sequential> |
<sequential> |
180 |
|
|
181 |
<mkdir dir="@{workdir}/tck-classes"/> |
<mkdir dir="@{workdir}/tck-classes"/> |
197 |
<compilerarg value="-XDignore.symbol.file=true"/> |
<compilerarg value="-XDignore.symbol.file=true"/> |
198 |
<compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial,-deprecation"/> |
<compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial,-deprecation"/> |
199 |
<compilerarg line="${build.args}"/> |
<compilerarg line="${build.args}"/> |
200 |
|
<javac-elements/> |
201 |
|
|
202 |
</javac> |
</javac> |
203 |
|
|
415 |
|
|
416 |
</target> |
</target> |
417 |
|
|
418 |
|
<target name="test-tck" |
419 |
|
depends="jar" |
420 |
|
description="Runs tck tests for main directly"> |
421 |
|
|
422 |
|
<run-tck-tests |
423 |
|
target="8" |
424 |
|
workdir="${build.dir}" |
425 |
|
classes="${product.jar}"/> |
426 |
|
</target> |
427 |
|
|
428 |
<target name="run-tests" |
<target name="run-tests" |
429 |
depends="compile-tests"> |
depends="compile-tests"> |
616 |
<run-tck-tests |
<run-tck-tests |
617 |
target="7" |
target="7" |
618 |
workdir="${build.4jdk7.dir}" |
workdir="${build.4jdk7.dir}" |
619 |
classes="${4jdk7product.jar}"/> |
classes="${4jdk7product.jar}"> |
620 |
|
<javac-elements> |
621 |
|
<exclude name="StampedLockTest.java"/> |
622 |
|
</javac-elements> |
623 |
|
</run-tck-tests> |
624 |
</target> |
</target> |
625 |
|
|
626 |
|
|