author | lana |
Thu, 23 Jul 2015 15:27:45 -0700 | |
changeset 31840 | 0513f1bb463b |
parent 31492 | f8c2cc6528ad |
child 31829 | fa5c0e50b2cf |
child 34024 | 00d015c3e298 |
permissions | -rw-r--r-- |
16147 | 1 |
<?xml version="1.0" encoding="UTF-8"?> |
24768
ae21f28f0ddc
8044102: Ensure bechmark exclude list for Octane benchmarks is in only one place, project.properties, and fix benchmark harness
lagergren
parents:
24767
diff
changeset
|
2 |
|
16147 | 3 |
<!-- |
30981
7ef4e72901cf
8080275: transparently download testng.jar for Nashorn testing
mhaupt
parents:
30980
diff
changeset
|
4 |
Copyright (c) 2010, 2015, Oracle and/or its affiliates. All rights reserved. |
16147 | 5 |
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
6 |
||
7 |
This code is free software; you can redistribute it and/or modify it |
|
8 |
under the terms of the GNU General Public License version 2 only, as |
|
9 |
published by the Free Software Foundation. |
|
10 |
||
11 |
This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
accompanied this code). |
|
16 |
||
17 |
You should have received a copy of the GNU General Public License version |
|
18 |
2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
||
21 |
Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
22 |
or visit www.oracle.com if you need additional information or have any |
|
23 |
questions. |
|
24 |
--> |
|
24768
ae21f28f0ddc
8044102: Ensure bechmark exclude list for Octane benchmarks is in only one place, project.properties, and fix benchmark harness
lagergren
parents:
24767
diff
changeset
|
25 |
|
16270
17f612656e6b
8009229: ant makefile default target should be "test"
sundar
parents:
16263
diff
changeset
|
26 |
<project name="nashorn" default="test" basedir=".."> |
16147 | 27 |
<import file="build-nasgen.xml"/> |
16255 | 28 |
<import file="code_coverage.xml"/> |
16147 | 29 |
|
16255 | 30 |
<target name="init-conditions"> |
31 |
<!-- loading locally defined resources and properties. NB they owerwrite default ones defined later --> |
|
32 |
<property file="${user.home}/.nashorn.project.local.properties"/> |
|
33 |
||
16147 | 34 |
<loadproperties srcFile="make/project.properties"/> |
26239
f38221b60b31
8055878: Nashorn: all tests failed with AccessControlException
yan
parents:
26236
diff
changeset
|
35 |
<path id="dist.path"> |
f38221b60b31
8055878: Nashorn: all tests failed with AccessControlException
yan
parents:
26236
diff
changeset
|
36 |
<pathelement location="${dist.dir}"/> |
f38221b60b31
8055878: Nashorn: all tests failed with AccessControlException
yan
parents:
26236
diff
changeset
|
37 |
</path> |
27571 | 38 |
<path id="nashorn.boot.prefix.path"> |
27825
cbb30ab946ee
8066683: nashorn test failures after modular image changes
sundar
parents:
27571
diff
changeset
|
39 |
<pathelement location="${dist.jar}"/> |
16147 | 40 |
</path> |
27965
fb116e158d75
8066749: jdk9-dev/nashorn ant build fails with jdk9 modular image build as JAVA_HOME
sundar
parents:
27825
diff
changeset
|
41 |
<property name="boot.class.path" value="-Xbootclasspath/p:${toString:nashorn.boot.prefix.path}"/> |
16163
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
42 |
<condition property="svn.executable" value="/usr/local/bin/svn" else="svn"> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
43 |
<available file="/usr/local/bin/svn"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
44 |
</condition> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
45 |
<condition property="hg.executable" value="/usr/local/bin/hg" else="hg"> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
46 |
<available file="/usr/local/bin/hg"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
47 |
</condition> |
23764 | 48 |
<condition property="git.executable" value="/usr/local/bin/git" else="git"> |
49 |
<available file="/usr/local/bin/git"/> |
|
50 |
</condition> |
|
16170
9e3f4e0b519b
8006093: Add a makefile target to run all tests (test, test262, perf tests)
sundar
parents:
16163
diff
changeset
|
51 |
<!-- check if testng.jar is avaiable --> |
9e3f4e0b519b
8006093: Add a makefile target to run all tests (test, test262, perf tests)
sundar
parents:
16163
diff
changeset
|
52 |
<available property="testng.available" file="${file.reference.testng.jar}"/> |
21443
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
53 |
<!-- check if Jemmy ang testng.jar are avaiable --> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
54 |
<condition property="jemmy.jfx.testng.available" value="true"> |
24768
ae21f28f0ddc
8044102: Ensure bechmark exclude list for Octane benchmarks is in only one place, project.properties, and fix benchmark harness
lagergren
parents:
24767
diff
changeset
|
55 |
<and> |
21443
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
56 |
<available file="${file.reference.jemmyfx.jar}"/> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
57 |
<available file="${file.reference.jemmycore.jar}"/> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
58 |
<available file="${file.reference.jemmyawtinput.jar}"/> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
59 |
<available file="${file.reference.jfxrt.jar}"/> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
60 |
<isset property="testng.available"/> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
61 |
</and> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
62 |
</condition> |
16255 | 63 |
|
19103
3905e242e69c
8020719: Run tests with reduced splitter threshold
hannesw
parents:
19087
diff
changeset
|
64 |
<!-- enable/disable make code coverage --> |
3905e242e69c
8020719: Run tests with reduced splitter threshold
hannesw
parents:
19087
diff
changeset
|
65 |
<condition property="cc.enabled"> |
3905e242e69c
8020719: Run tests with reduced splitter threshold
hannesw
parents:
19087
diff
changeset
|
66 |
<istrue value="${make.code.coverage}" /> |
3905e242e69c
8020719: Run tests with reduced splitter threshold
hannesw
parents:
19087
diff
changeset
|
67 |
</condition> |
19082
6926097854f6
8017585: Exclude two failing tests from Nashorn CC run
jlaskey
parents:
18865
diff
changeset
|
68 |
|
6926097854f6
8017585: Exclude two failing tests from Nashorn CC run
jlaskey
parents:
18865
diff
changeset
|
69 |
<!-- exclude tests in exclude lists --> |
6926097854f6
8017585: Exclude two failing tests from Nashorn CC run
jlaskey
parents:
18865
diff
changeset
|
70 |
<condition property="exclude.list" value="./exclude/exclude_list_cc.txt" else="./exclude/exclude_list.txt"> |
6926097854f6
8017585: Exclude two failing tests from Nashorn CC run
jlaskey
parents:
18865
diff
changeset
|
71 |
<istrue value="${make.code.coverage}" /> |
6926097854f6
8017585: Exclude two failing tests from Nashorn CC run
jlaskey
parents:
18865
diff
changeset
|
72 |
</condition> |
22366
1db7c8634626
8029090: Developers should be able to pass nashorn properties and enable/disable JFR from command line
sundar
parents:
20564
diff
changeset
|
73 |
|
1db7c8634626
8029090: Developers should be able to pass nashorn properties and enable/disable JFR from command line
sundar
parents:
20564
diff
changeset
|
74 |
<condition property="jfr.options" value="${run.test.jvmargs.jfr}" else=""> |
1db7c8634626
8029090: Developers should be able to pass nashorn properties and enable/disable JFR from command line
sundar
parents:
20564
diff
changeset
|
75 |
<istrue value="${jfr}"/> |
1db7c8634626
8029090: Developers should be able to pass nashorn properties and enable/disable JFR from command line
sundar
parents:
20564
diff
changeset
|
76 |
</condition> |
16255 | 77 |
</target> |
27205
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
78 |
|
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
79 |
<!-- check minimum ant version required to be 1.8.4 --> |
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
80 |
<target name="check-ant-version"> |
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
81 |
<property name="ant.version.required" value="1.8.4"/> |
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
82 |
<antversion property="ant.current.version" /> |
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
83 |
<fail message="The current ant version, ${ant.current.version}, is too old. Please use 1.8.4 or above."> |
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
84 |
<condition> |
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
85 |
<not> |
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
86 |
<antversion atleast="${ant.version.required}"/> |
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
87 |
</not> |
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
88 |
</condition> |
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
89 |
</fail> |
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
90 |
</target> |
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
91 |
|
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
92 |
<target name="check-java-version"> |
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
93 |
<!-- look for a Class that is available only in jdk1.8 or above --> |
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
94 |
<!-- core/exposed API class is better than an implementation class --> |
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
95 |
<available property="jdk1.8+" classname="java.util.stream.Stream"/> |
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
96 |
|
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
97 |
<!-- need jdk1.8 or above --> |
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
98 |
<fail message="Unsupported Java version: ${ant.java.version}. Please use Java version 1.8 or greater." unless="jdk1.8+"> |
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
99 |
</fail> |
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
100 |
</target> |
29407 | 101 |
|
27205
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
102 |
<target name="init" depends="check-ant-version, check-java-version, init-conditions, init-cc"> |
19103
3905e242e69c
8020719: Run tests with reduced splitter threshold
hannesw
parents:
19087
diff
changeset
|
103 |
<!-- extends jvm args --> |
22366
1db7c8634626
8029090: Developers should be able to pass nashorn properties and enable/disable JFR from command line
sundar
parents:
20564
diff
changeset
|
104 |
<property name="run.test.jvmargs" value="${run.test.jvmargs.main} ${run.test.cc.jvmargs} ${jfr.options}"/> |
1db7c8634626
8029090: Developers should be able to pass nashorn properties and enable/disable JFR from command line
sundar
parents:
20564
diff
changeset
|
105 |
<property name="run.test.jvmargs.octane" value="${run.test.jvmargs.octane.main} ${run.test.cc.jvmargs} ${jfr.options}"/> |
16255 | 106 |
|
107 |
<echo message="run.test.jvmargs=${run.test.jvmargs}"/> |
|
108 |
<echo message="run.test.jvmargs.octane=${run.test.jvmargs.octane}"/> |
|
20212
5e7711039ab0
8023154: compileAllTests fails with: 2 tests failed to compile
hannesw
parents:
19895
diff
changeset
|
109 |
<echo message="run.test.xms=${run.test.xms}"/> |
5e7711039ab0
8023154: compileAllTests fails with: 2 tests failed to compile
hannesw
parents:
19895
diff
changeset
|
110 |
<echo message="run.test.xmx=${run.test.xmx}"/> |
16255 | 111 |
|
16147 | 112 |
</target> |
113 |
||
114 |
<target name="prepare" depends="init"> |
|
115 |
<mkdir dir="${build.dir}"/> |
|
116 |
<mkdir dir="${build.classes.dir}"/> |
|
117 |
<mkdir dir="${build.classes.dir}/META-INF/services"/> |
|
118 |
<mkdir dir="${build.test.classes.dir}"/> |
|
119 |
<mkdir dir="${dist.dir}"/> |
|
120 |
<mkdir dir="${dist.javadoc.dir}"/> |
|
121 |
</target> |
|
122 |
||
16255 | 123 |
<target name="clean" depends="init, clean-nasgen, init-cc-cleanup"> |
16147 | 124 |
<delete includeemptydirs="true"> |
16234
86cb162cec6c
8008085: Integrate Dynalink source code into Nashorn codebase
attila
parents:
16231
diff
changeset
|
125 |
<fileset dir="${build.dir}" erroronmissingdir="false"/> |
16147 | 126 |
</delete> |
127 |
<delete dir="${dist.dir}"/> |
|
128 |
</target> |
|
129 |
||
27205
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
130 |
<target name="compile" depends="prepare" description="Compiles nashorn"> |
16147 | 131 |
<javac srcdir="${src.dir}" |
132 |
destdir="${build.classes.dir}" |
|
133 |
classpath="${javac.classpath}" |
|
134 |
source="${javac.source}" |
|
135 |
target="${javac.target}" |
|
136 |
debug="${javac.debug}" |
|
137 |
encoding="${javac.encoding}" |
|
18851
bdb92c95f886
8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
18841
diff
changeset
|
138 |
includeantruntime="false" fork="true"> |
25250
b5a4e0ac31d1
8047359: large string size RangeError should be thrown rather than reporting negative length
sundar
parents:
24882
diff
changeset
|
139 |
<compilerarg value="-Xlint:all"/> |
16147 | 140 |
<compilerarg value="-XDignore.symbol.file"/> |
23375
a1110f2cbe75
8037400: Remove getInitialMap getters and GlobalObject interface
sundar
parents:
23372
diff
changeset
|
141 |
<compilerarg value="-Xdiags:verbose"/> |
26070
1c348e8d9b88
8055395: Nashorn should use source, target to be 1.8 and use ASM5 version for generated code
sundar
parents:
26062
diff
changeset
|
142 |
<compilerarg value="-parameters"/> |
16147 | 143 |
</javac> |
144 |
<copy todir="${build.classes.dir}/META-INF/services"> |
|
145 |
<fileset dir="${meta.inf.dir}/services/"/> |
|
146 |
</copy> |
|
147 |
<copy todir="${build.classes.dir}/jdk/nashorn/api/scripting/resources"> |
|
148 |
<fileset dir="${src.dir}/jdk/nashorn/api/scripting/resources/"/> |
|
149 |
</copy> |
|
150 |
<copy todir="${build.classes.dir}/jdk/nashorn/internal/runtime/resources"> |
|
151 |
<fileset dir="${src.dir}/jdk/nashorn/internal/runtime/resources/"/> |
|
152 |
</copy> |
|
153 |
<copy todir="${build.classes.dir}/jdk/nashorn/tools/resources"> |
|
154 |
<fileset dir="${src.dir}/jdk/nashorn/tools/resources/"/> |
|
155 |
</copy> |
|
16234
86cb162cec6c
8008085: Integrate Dynalink source code into Nashorn codebase
attila
parents:
16231
diff
changeset
|
156 |
<copy file="${src.dir}/jdk/internal/dynalink/support/messages.properties" todir="${build.classes.dir}/jdk/internal/dynalink/support"/> |
27523
6d06a5827cf0
8064467: type info persistence failed to calculate directory name
attila
parents:
27205
diff
changeset
|
157 |
<copy file="${src.dir}/jdk/nashorn/internal/codegen/anchor.properties" todir="${build.classes.dir}/jdk/nashorn/internal/codegen"/> |
16234
86cb162cec6c
8008085: Integrate Dynalink source code into Nashorn codebase
attila
parents:
16231
diff
changeset
|
158 |
|
16147 | 159 |
<echo message="full=${nashorn.fullversion}" file="${build.classes.dir}/jdk/nashorn/internal/runtime/resources/version.properties"/> |
160 |
<echo file="${build.classes.dir}/jdk/nashorn/internal/runtime/resources/version.properties" append="true">${line.separator}</echo> |
|
161 |
<echo message="release=${nashorn.version}" file="${build.classes.dir}/jdk/nashorn/internal/runtime/resources/version.properties" append="true"/> |
|
162 |
</target> |
|
163 |
||
18630
48e3dc4bf0f6
8019580: Build Script Change for Nashorn promotion testing
jlaskey
parents:
17767
diff
changeset
|
164 |
<target name="jar" depends="compile, run-nasgen, generate-cc-template" description="Creates nashorn.jar" unless="compile.suppress.jar"> |
16147 | 165 |
<jar jarfile="${dist.jar}" manifest="${meta.inf.dir}/MANIFEST.MF" index="true" filesetmanifest="merge"> |
166 |
<fileset dir="${build.classes.dir}"/> |
|
167 |
<manifest> |
|
168 |
<attribute name="Archiver-Version" value="n/a"/> |
|
169 |
<attribute name="Build-Jdk" value="${java.runtime.version}"/> |
|
170 |
<attribute name="Built-By" value="n/a"/> |
|
171 |
<attribute name="Created-By" value="Ant jar task"/> |
|
172 |
<section name="jdk/nashorn/"> |
|
173 |
<attribute name="Implementation-Title" value="${nashorn.product.name}"/> |
|
174 |
<attribute name="Implementation-Version" value="${nashorn.version}"/> |
|
175 |
</section> |
|
176 |
</manifest> |
|
177 |
</jar> |
|
178 |
</target> |
|
18630
48e3dc4bf0f6
8019580: Build Script Change for Nashorn promotion testing
jlaskey
parents:
17767
diff
changeset
|
179 |
|
48e3dc4bf0f6
8019580: Build Script Change for Nashorn promotion testing
jlaskey
parents:
17767
diff
changeset
|
180 |
<target name="use-promoted-nashorn" depends="init"> |
48e3dc4bf0f6
8019580: Build Script Change for Nashorn promotion testing
jlaskey
parents:
17767
diff
changeset
|
181 |
<delete file="${dist.dir}/nashorn.jar"/> |
48e3dc4bf0f6
8019580: Build Script Change for Nashorn promotion testing
jlaskey
parents:
17767
diff
changeset
|
182 |
<copy file="${java.home}/lib/ext/nashorn.jar" todir="${dist.dir}"/> |
48e3dc4bf0f6
8019580: Build Script Change for Nashorn promotion testing
jlaskey
parents:
17767
diff
changeset
|
183 |
<property name="compile.suppress.jar" value="defined"/> |
48e3dc4bf0f6
8019580: Build Script Change for Nashorn promotion testing
jlaskey
parents:
17767
diff
changeset
|
184 |
</target> |
48e3dc4bf0f6
8019580: Build Script Change for Nashorn promotion testing
jlaskey
parents:
17767
diff
changeset
|
185 |
|
16763 | 186 |
<target name="build-fxshell" depends="jar"> |
187 |
<description>Builds the javafx shell.</description> |
|
188 |
<mkdir dir="${fxshell.classes.dir}"/> |
|
189 |
<javac srcdir="${fxshell.dir}" |
|
190 |
destdir="${fxshell.classes.dir}" |
|
30515
d76d66d416ed
8080286: use path separator setting consistently in Nashorn project properties
mhaupt
parents:
29832
diff
changeset
|
191 |
classpath="${dist.jar}${path.separator}${javac.classpath}" |
16763 | 192 |
debug="${javac.debug}" |
193 |
encoding="${javac.encoding}" |
|
194 |
includeantruntime="false"> |
|
195 |
</javac> |
|
196 |
<jar jarfile="${fxshell.jar}" manifest="${meta.inf.dir}/MANIFEST.MF" index="true" filesetmanifest="merge"> |
|
197 |
<fileset dir="${fxshell.classes.dir}"/> |
|
198 |
<manifest> |
|
199 |
<attribute name="Archiver-Version" value="n/a"/> |
|
200 |
<attribute name="Build-Jdk" value="${java.runtime.version}"/> |
|
201 |
<attribute name="Built-By" value="n/a"/> |
|
202 |
<attribute name="Created-By" value="Ant jar task"/> |
|
203 |
<section name="jdk/nashorn/"> |
|
204 |
<attribute name="Implementation-Title" value="Oracle Nashorn FXShell"/> |
|
205 |
<attribute name="Implementation-Version" value="${nashorn.version}"/> |
|
206 |
</section> |
|
207 |
</manifest> |
|
208 |
</jar> |
|
209 |
</target> |
|
16147 | 210 |
|
31492 | 211 |
<!-- generate javadoc for all Nashorn and ASM classes --> |
24639
cde22f00c4e6
8044415: ant makefile should have a target to generate javadoc only for jdk.nashorn.api and sub-packages
sundar
parents:
24586
diff
changeset
|
212 |
<target name="javadoc" depends="jar"> |
29407 | 213 |
<javadoc destdir="${dist.javadoc.dir}" use="yes" overview="${src.dir}/overview.html" |
24639
cde22f00c4e6
8044415: ant makefile should have a target to generate javadoc only for jdk.nashorn.api and sub-packages
sundar
parents:
24586
diff
changeset
|
214 |
extdirs="${nashorn.ext.path}" windowtitle="${nashorn.product.name} ${nashorn.version}" |
31492 | 215 |
additionalparam="-quiet" failonerror="true" useexternalfile="true"> |
16147 | 216 |
<classpath> |
217 |
<pathelement location="${build.classes.dir}"/> |
|
218 |
</classpath> |
|
219 |
<fileset dir="${src.dir}" includes="**/*.java"/> |
|
16154
de44634fa4ec
8005782: get rid of javadoc errors, warnings in nashorn build
sundar
parents:
16151
diff
changeset
|
220 |
<fileset dir="${jdk.asm.src.dir}" includes="**/*.java"/> |
24639
cde22f00c4e6
8044415: ant makefile should have a target to generate javadoc only for jdk.nashorn.api and sub-packages
sundar
parents:
24586
diff
changeset
|
221 |
<link href="http://docs.oracle.com/javase/8/docs/api/"/> |
16154
de44634fa4ec
8005782: get rid of javadoc errors, warnings in nashorn build
sundar
parents:
16151
diff
changeset
|
222 |
<!-- The following tags are used only in ASM sources - just ignore these --> |
de44634fa4ec
8005782: get rid of javadoc errors, warnings in nashorn build
sundar
parents:
16151
diff
changeset
|
223 |
<tag name="label" description="label tag in ASM sources" enabled="false"/> |
de44634fa4ec
8005782: get rid of javadoc errors, warnings in nashorn build
sundar
parents:
16151
diff
changeset
|
224 |
<tag name="linked" description="linked tag in ASM sources" enabled="false"/> |
de44634fa4ec
8005782: get rid of javadoc errors, warnings in nashorn build
sundar
parents:
16151
diff
changeset
|
225 |
<tag name="associates" description="associates tag in ASM sources" enabled="false"/> |
16147 | 226 |
</javadoc> |
227 |
</target> |
|
228 |
||
31492 | 229 |
<!-- generate javadoc for Nashorn classes --> |
230 |
<target name="javadocnh" depends="jar"> |
|
231 |
<javadoc destdir="${dist.javadoc.dir}" use="yes" overview="${src.dir}/overview.html" |
|
232 |
extdirs="${nashorn.ext.path}" windowtitle="${nashorn.product.name} ${nashorn.version}" |
|
233 |
additionalparam="-quiet" failonerror="true" useexternalfile="true"> |
|
234 |
<classpath> |
|
235 |
<pathelement location="${build.classes.dir}"/> |
|
236 |
</classpath> |
|
237 |
<fileset dir="${src.dir}" includes="**/*.java"/> |
|
238 |
<link href="http://docs.oracle.com/javase/8/docs/api/"/> |
|
239 |
</javadoc> |
|
240 |
</target> |
|
241 |
||
24639
cde22f00c4e6
8044415: ant makefile should have a target to generate javadoc only for jdk.nashorn.api and sub-packages
sundar
parents:
24586
diff
changeset
|
242 |
<!-- generate javadoc only for nashorn extension api classes --> |
cde22f00c4e6
8044415: ant makefile should have a target to generate javadoc only for jdk.nashorn.api and sub-packages
sundar
parents:
24586
diff
changeset
|
243 |
<target name="javadocapi" depends="jar"> |
31492 | 244 |
<javadoc destdir="${dist.javadoc.dir}" use="yes" overview="${src.dir}/overview.html" |
245 |
extdirs="${nashorn.ext.path}" windowtitle="${nashorn.product.name} ${nashorn.version}" |
|
246 |
additionalparam="-quiet" failonerror="true" useexternalfile="true"> |
|
24639
cde22f00c4e6
8044415: ant makefile should have a target to generate javadoc only for jdk.nashorn.api and sub-packages
sundar
parents:
24586
diff
changeset
|
247 |
<classpath> |
cde22f00c4e6
8044415: ant makefile should have a target to generate javadoc only for jdk.nashorn.api and sub-packages
sundar
parents:
24586
diff
changeset
|
248 |
<pathelement location="${build.classes.dir}"/> |
cde22f00c4e6
8044415: ant makefile should have a target to generate javadoc only for jdk.nashorn.api and sub-packages
sundar
parents:
24586
diff
changeset
|
249 |
</classpath> |
cde22f00c4e6
8044415: ant makefile should have a target to generate javadoc only for jdk.nashorn.api and sub-packages
sundar
parents:
24586
diff
changeset
|
250 |
<fileset dir="${src.dir}" includes="jdk/nashorn/api/**/*.java"/> |
cde22f00c4e6
8044415: ant makefile should have a target to generate javadoc only for jdk.nashorn.api and sub-packages
sundar
parents:
24586
diff
changeset
|
251 |
<link href="http://docs.oracle.com/javase/8/docs/api/"/> |
cde22f00c4e6
8044415: ant makefile should have a target to generate javadoc only for jdk.nashorn.api and sub-packages
sundar
parents:
24586
diff
changeset
|
252 |
</javadoc> |
cde22f00c4e6
8044415: ant makefile should have a target to generate javadoc only for jdk.nashorn.api and sub-packages
sundar
parents:
24586
diff
changeset
|
253 |
</target> |
cde22f00c4e6
8044415: ant makefile should have a target to generate javadoc only for jdk.nashorn.api and sub-packages
sundar
parents:
24586
diff
changeset
|
254 |
|
cde22f00c4e6
8044415: ant makefile should have a target to generate javadoc only for jdk.nashorn.api and sub-packages
sundar
parents:
24586
diff
changeset
|
255 |
|
16147 | 256 |
<!-- generate shell.html for shell tool documentation --> |
257 |
<target name="shelldoc" depends="jar"> |
|
258 |
<java classname="${nashorn.shell.tool}" dir="${basedir}" output="${dist.dir}/shell.html" failonerror="true" fork="true"> |
|
27571 | 259 |
<jvmarg line="${boot.class.path}"/> |
16147 | 260 |
<arg value="-scripting"/> |
261 |
<arg value="docs/genshelldoc.js"/> |
|
262 |
</java> |
|
263 |
</target> |
|
264 |
||
265 |
<!-- generate all docs --> |
|
266 |
<target name="docs" depends="javadoc, shelldoc"/> |
|
267 |
||
268 |
<!-- create .zip and .tar.gz for nashorn binaries and scripts. --> |
|
269 |
<target name="dist" depends="jar"> |
|
270 |
<zip destfile="${build.zip}" basedir=".." |
|
271 |
excludes="nashorn/bin/*.sh" includes="nashorn/bin/** nashorn/dist/**"/> |
|
272 |
<tar destfile="${build.gzip}" basedir=".." compression="gzip" |
|
273 |
excludes="nashorn/bin/*.sh" includes="nashorn/bin/** nashorn/dist/**"/> |
|
274 |
</target> |
|
275 |
||
276 |
<target name="compile-test" depends="compile, run-nasgen" if="testng.available"> |
|
277 |
<!-- testng task --> |
|
278 |
<taskdef name="testng" classname="org.testng.TestNGAntTask" |
|
279 |
classpath="${file.reference.testng.jar}"/> |
|
280 |
||
281 |
<javac srcdir="${test.src.dir}" |
|
282 |
destdir="${build.test.classes.dir}" |
|
283 |
classpath="${javac.test.classpath}" |
|
284 |
source="${javac.source}" |
|
285 |
target="${javac.target}" |
|
286 |
debug="${javac.debug}" |
|
287 |
encoding="${javac.encoding}" |
|
18865
8844964e5fc5
8020325: static property does not work on accessible, public classes
sundar
parents:
18851
diff
changeset
|
288 |
includeantruntime="false" fork="true"> |
27965
fb116e158d75
8066749: jdk9-dev/nashorn ant build fails with jdk9 modular image build as JAVA_HOME
sundar
parents:
27825
diff
changeset
|
289 |
<compilerarg value="${boot.class.path}"/> |
18865
8844964e5fc5
8020325: static property does not work on accessible, public classes
sundar
parents:
18851
diff
changeset
|
290 |
<compilerarg value="-Xlint:unchecked"/> |
8844964e5fc5
8020325: static property does not work on accessible, public classes
sundar
parents:
18851
diff
changeset
|
291 |
<compilerarg value="-Xlint:deprecation"/> |
23375
a1110f2cbe75
8037400: Remove getInitialMap getters and GlobalObject interface
sundar
parents:
23372
diff
changeset
|
292 |
<compilerarg value="-Xdiags:verbose"/> |
17757
892b9873e831
8014909: ant test compilation error with JoniTest.java
sundar
parents:
17753
diff
changeset
|
293 |
</javac> |
16221
38ac51eba133
8007715: Make sure that not all tests run with AllPermission
sundar
parents:
16170
diff
changeset
|
294 |
|
19895
965b12eb322e
8024619: JDBC java.sql.DriverManager is not usable from JS script
sundar
parents:
19894
diff
changeset
|
295 |
<copy todir="${build.test.classes.dir}/META-INF/services"> |
965b12eb322e
8024619: JDBC java.sql.DriverManager is not usable from JS script
sundar
parents:
19894
diff
changeset
|
296 |
<fileset dir="${test.src.dir}/META-INF/services/"/> |
965b12eb322e
8024619: JDBC java.sql.DriverManager is not usable from JS script
sundar
parents:
19894
diff
changeset
|
297 |
</copy> |
965b12eb322e
8024619: JDBC java.sql.DriverManager is not usable from JS script
sundar
parents:
19894
diff
changeset
|
298 |
|
29758
cb8621d74d60
8076646: nashorn tests should avoid using package names used by nashorn sources
sundar
parents:
29407
diff
changeset
|
299 |
<copy todir="${build.test.classes.dir}/jdk/nashorn/internal/runtime/test/resources"> |
cb8621d74d60
8076646: nashorn tests should avoid using package names used by nashorn sources
sundar
parents:
29407
diff
changeset
|
300 |
<fileset dir="${test.src.dir}/jdk/nashorn/internal/runtime/test/resources"/> |
20564
f353da961684
8025629: load function should support a way to load scripts from classpath
sundar
parents:
20212
diff
changeset
|
301 |
</copy> |
f353da961684
8025629: load function should support a way to load scripts from classpath
sundar
parents:
20212
diff
changeset
|
302 |
|
29758
cb8621d74d60
8076646: nashorn tests should avoid using package names used by nashorn sources
sundar
parents:
29407
diff
changeset
|
303 |
<copy todir="${build.test.classes.dir}/jdk/nashorn/api/scripting/test/resources"> |
cb8621d74d60
8076646: nashorn tests should avoid using package names used by nashorn sources
sundar
parents:
29407
diff
changeset
|
304 |
<fileset dir="${test.src.dir}/jdk/nashorn/api/scripting/test/resources"/> |
23372
09707b3e5fb0
8021350: Share script classes between threads/globals within context
hannesw
parents:
23075
diff
changeset
|
305 |
</copy> |
09707b3e5fb0
8021350: Share script classes between threads/globals within context
hannesw
parents:
23075
diff
changeset
|
306 |
|
16221
38ac51eba133
8007715: Make sure that not all tests run with AllPermission
sundar
parents:
16170
diff
changeset
|
307 |
<!-- tests that check nashorn internals and internal API --> |
38ac51eba133
8007715: Make sure that not all tests run with AllPermission
sundar
parents:
16170
diff
changeset
|
308 |
<jar jarfile="${nashorn.internal.tests.jar}"> |
16522 | 309 |
<fileset dir="${build.test.classes.dir}" excludes="**/api/**"/> |
16221
38ac51eba133
8007715: Make sure that not all tests run with AllPermission
sundar
parents:
16170
diff
changeset
|
310 |
</jar> |
38ac51eba133
8007715: Make sure that not all tests run with AllPermission
sundar
parents:
16170
diff
changeset
|
311 |
|
38ac51eba133
8007715: Make sure that not all tests run with AllPermission
sundar
parents:
16170
diff
changeset
|
312 |
<!-- tests that check nashorn script engine (jsr-223) API --> |
38ac51eba133
8007715: Make sure that not all tests run with AllPermission
sundar
parents:
16170
diff
changeset
|
313 |
<jar jarfile="${nashorn.api.tests.jar}"> |
16522 | 314 |
<fileset dir="${build.test.classes.dir}" includes="**/api/**"/> |
19895
965b12eb322e
8024619: JDBC java.sql.DriverManager is not usable from JS script
sundar
parents:
19894
diff
changeset
|
315 |
<fileset dir="${build.test.classes.dir}" includes="**/META-INF/**"/> |
20564
f353da961684
8025629: load function should support a way to load scripts from classpath
sundar
parents:
20212
diff
changeset
|
316 |
<fileset dir="${build.test.classes.dir}" includes="**/resources/*.js"/> |
16221
38ac51eba133
8007715: Make sure that not all tests run with AllPermission
sundar
parents:
16170
diff
changeset
|
317 |
</jar> |
38ac51eba133
8007715: Make sure that not all tests run with AllPermission
sundar
parents:
16170
diff
changeset
|
318 |
|
16147 | 319 |
</target> |
320 |
||
16236
ca6274fb36fe
8007990: No access to interface methods on a restricted class
attila
parents:
16234
diff
changeset
|
321 |
<target name="generate-policy-file" depends="prepare"> |
18841
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
322 |
<echo file="${build.dir}/nashorn.policy"> |
16221
38ac51eba133
8007715: Make sure that not all tests run with AllPermission
sundar
parents:
16170
diff
changeset
|
323 |
|
26239
f38221b60b31
8055878: Nashorn: all tests failed with AccessControlException
yan
parents:
26236
diff
changeset
|
324 |
grant codeBase "file:/${toString:dist.path}/nashorn.jar" { |
24384
aa4f755d97ec
8043132: Nashorn : all tests failed with java.security.AccessControlException
sundar
parents:
23764
diff
changeset
|
325 |
permission java.security.AllPermission; |
aa4f755d97ec
8043132: Nashorn : all tests failed with java.security.AccessControlException
sundar
parents:
23764
diff
changeset
|
326 |
}; |
aa4f755d97ec
8043132: Nashorn : all tests failed with java.security.AccessControlException
sundar
parents:
23764
diff
changeset
|
327 |
|
18841
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
328 |
grant codeBase "file:/${basedir}/${nashorn.internal.tests.jar}" { |
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
329 |
permission java.security.AllPermission; |
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
330 |
}; |
18630
48e3dc4bf0f6
8019580: Build Script Change for Nashorn promotion testing
jlaskey
parents:
17767
diff
changeset
|
331 |
|
29407 | 332 |
grant codeBase "file:/${basedir}/${nashorn.api.tests.jar}" { |
333 |
permission java.util.PropertyPermission "parserapitest.*", "read"; |
|
334 |
permission java.util.PropertyPermission "test.*", "read"; |
|
335 |
permission java.util.PropertyPermission "test262.*", "read"; |
|
336 |
permission java.io.FilePermission "${basedir}/test/-","read"; |
|
337 |
permission java.io.FilePermission "$${user.dir}", "read"; |
|
338 |
permission java.util.PropertyPermission "user.dir", "read"; |
|
339 |
}; |
|
340 |
||
18841
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
341 |
grant codeBase "file:/${basedir}/${file.reference.testng.jar}" { |
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
342 |
permission java.security.AllPermission; |
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
343 |
}; |
25675
556f675a6a12
8051019: Separate src and test execution sandbox directories
sundar
parents:
25586
diff
changeset
|
344 |
//// in case of absolute path: |
556f675a6a12
8051019: Separate src and test execution sandbox directories
sundar
parents:
25586
diff
changeset
|
345 |
grant codeBase "file:/${nashorn.internal.tests.jar}" { |
556f675a6a12
8051019: Separate src and test execution sandbox directories
sundar
parents:
25586
diff
changeset
|
346 |
permission java.security.AllPermission; |
556f675a6a12
8051019: Separate src and test execution sandbox directories
sundar
parents:
25586
diff
changeset
|
347 |
}; |
556f675a6a12
8051019: Separate src and test execution sandbox directories
sundar
parents:
25586
diff
changeset
|
348 |
|
556f675a6a12
8051019: Separate src and test execution sandbox directories
sundar
parents:
25586
diff
changeset
|
349 |
grant codeBase "file:/${file.reference.testng.jar}" { |
556f675a6a12
8051019: Separate src and test execution sandbox directories
sundar
parents:
25586
diff
changeset
|
350 |
permission java.security.AllPermission; |
556f675a6a12
8051019: Separate src and test execution sandbox directories
sundar
parents:
25586
diff
changeset
|
351 |
}; |
16147 | 352 |
|
18841
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
353 |
grant codeBase "file:/${basedir}/test/script/trusted/*" { |
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
354 |
permission java.security.AllPermission; |
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
355 |
}; |
16147 | 356 |
|
23075
0e9484b12766
8033763: Add tests to assert map identity of certain objects
sundar
parents:
22371
diff
changeset
|
357 |
grant codeBase "file:/${basedir}/test/script/maptests/*" { |
0e9484b12766
8033763: Add tests to assert map identity of certain objects
sundar
parents:
22371
diff
changeset
|
358 |
permission java.io.FilePermission "${basedir}/test/script/maptests/*","read"; |
0e9484b12766
8033763: Add tests to assert map identity of certain objects
sundar
parents:
22371
diff
changeset
|
359 |
permission java.lang.RuntimePermission "nashorn.debugMode"; |
0e9484b12766
8033763: Add tests to assert map identity of certain objects
sundar
parents:
22371
diff
changeset
|
360 |
}; |
0e9484b12766
8033763: Add tests to assert map identity of certain objects
sundar
parents:
22371
diff
changeset
|
361 |
|
18841
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
362 |
grant codeBase "file:/${basedir}/test/script/basic/*" { |
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
363 |
permission java.io.FilePermission "${basedir}/test/script/-", "read"; |
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
364 |
permission java.io.FilePermission "$${user.dir}", "read"; |
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
365 |
permission java.util.PropertyPermission "user.dir", "read"; |
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
366 |
permission java.util.PropertyPermission "nashorn.test.*", "read"; |
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
367 |
}; |
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
368 |
|
19894
195477810711
8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
19103
diff
changeset
|
369 |
grant codeBase "file:/${basedir}/test/script/basic/parser/*" { |
195477810711
8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
19103
diff
changeset
|
370 |
permission java.io.FilePermission "${basedir}/test/script/-", "read"; |
195477810711
8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
19103
diff
changeset
|
371 |
permission java.io.FilePermission "$${user.dir}", "read"; |
195477810711
8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
19103
diff
changeset
|
372 |
permission java.util.PropertyPermission "user.dir", "read"; |
195477810711
8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
19103
diff
changeset
|
373 |
permission java.util.PropertyPermission "nashorn.test.*", "read"; |
195477810711
8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
19103
diff
changeset
|
374 |
}; |
195477810711
8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
19103
diff
changeset
|
375 |
|
26377
028dad61662f
8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
26239
diff
changeset
|
376 |
grant codeBase "file:/${basedir}/test/script/basic/es6/*" { |
028dad61662f
8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
26239
diff
changeset
|
377 |
permission java.io.FilePermission "${basedir}/test/script/-", "read"; |
028dad61662f
8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
26239
diff
changeset
|
378 |
permission java.io.FilePermission "$${user.dir}", "read"; |
028dad61662f
8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
26239
diff
changeset
|
379 |
permission java.util.PropertyPermission "user.dir", "read"; |
028dad61662f
8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
26239
diff
changeset
|
380 |
permission java.util.PropertyPermission "nashorn.test.*", "read"; |
028dad61662f
8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
26239
diff
changeset
|
381 |
}; |
028dad61662f
8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
26239
diff
changeset
|
382 |
|
18841
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
383 |
grant codeBase "file:/${basedir}/test/script/basic/JDK-8010946-privileged.js" { |
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
384 |
permission java.util.PropertyPermission "java.security.policy", "read"; |
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
385 |
}; |
19087
47d02733b128
8020820: Limit access to static members of reflective classes
attila
parents:
19082
diff
changeset
|
386 |
|
47d02733b128
8020820: Limit access to static members of reflective classes
attila
parents:
19082
diff
changeset
|
387 |
grant codeBase "file:/${basedir}/test/script/basic/classloader.js" { |
47d02733b128
8020820: Limit access to static members of reflective classes
attila
parents:
19082
diff
changeset
|
388 |
permission java.lang.RuntimePermission "nashorn.JavaReflection"; |
47d02733b128
8020820: Limit access to static members of reflective classes
attila
parents:
19082
diff
changeset
|
389 |
}; |
47d02733b128
8020820: Limit access to static members of reflective classes
attila
parents:
19082
diff
changeset
|
390 |
|
22371
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
391 |
grant codeBase "file:/${basedir}/test/script/markdown.js" { |
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
392 |
permission java.io.FilePermission "${basedir}/test/script/external/showdown/-", "read"; |
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
393 |
}; |
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
394 |
|
18841
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
395 |
</echo> |
16147 | 396 |
|
397 |
<replace file="${build.dir}/nashorn.policy"><replacetoken>\</replacetoken><replacevalue>/</replacevalue></replace> <!--hack for Windows - to make URLs with normal path separators --> |
|
398 |
<replace file="${build.dir}/nashorn.policy"><replacetoken>//</replacetoken><replacevalue>/</replacevalue></replace> <!--hack for Unix - to avoid leading // in URLs --> |
|
399 |
||
400 |
</target> |
|
401 |
||
402 |
<target name="check-external-tests"> |
|
403 |
<available file="${test.external.dir}/prototype" property="test-sys-prop.external.prototype"/> |
|
404 |
<available file="${test.external.dir}/sunspider" property="test-sys-prop.external.sunspider"/> |
|
405 |
<available file="${test.external.dir}/underscore" property="test-sys-prop.external.underscore"/> |
|
406 |
<available file="${test.external.dir}/octane" property="test-sys-prop.external.octane"/> |
|
407 |
<available file="${test.external.dir}/yui" property="test-sys-prop.external.yui"/> |
|
408 |
<available file="${test.external.dir}/jquery" property="test-sys-prop.external.jquery"/> |
|
409 |
<available file="${test.external.dir}/test262" property="test-sys-prop.external.test262"/> |
|
22371
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
410 |
<available file="${test.external.dir}/showdown" property="test-sys-prop.external.markdown"/> |
16147 | 411 |
</target> |
412 |
||
413 |
<target name="check-testng" unless="testng.available"> |
|
30981
7ef4e72901cf
8080275: transparently download testng.jar for Nashorn testing
mhaupt
parents:
30980
diff
changeset
|
414 |
<echo message="WARNING: TestNG not available, will not run tests. Please copy testng.jar under ${test.lib} directory."/> |
16147 | 415 |
</target> |
416 |
||
24882 | 417 |
<!-- only to be invoked as dependency of "test" target --> |
418 |
<target name="-test-classes-all" depends="jar" unless="test.class"> |
|
419 |
<fileset id="test.classes" dir="${build.test.classes.dir}"> |
|
29832 | 420 |
<include name="**/api/javaaccess/test/*Test.class"/> |
421 |
<include name="**/api/scripting/test/*Test.class"/> |
|
422 |
<include name="**/api/tree/test/*Test.class"/> |
|
423 |
<include name="**/codegen/test/*Test.class"/> |
|
424 |
<include name="**/parser/test/*Test.class"/> |
|
425 |
<include name="**/runtime/test/*Test.class"/> |
|
426 |
<include name="**/runtime/regexp/test/*Test.class"/> |
|
427 |
<include name="**/runtime/regexp/joni/test/*Test.class"/> |
|
24882 | 428 |
<include name="**/framework/*Test.class"/> |
429 |
</fileset> |
|
430 |
</target> |
|
16147 | 431 |
|
24882 | 432 |
<!-- only to be invoked as dependency of "test" target --> |
433 |
<target name="-test-classes-single" depends="jar" if="test.class"> |
|
434 |
<fileset id="test.classes" dir="${build.test.classes.dir}"> |
|
435 |
<include name="${test.class}*"/> |
|
436 |
</fileset> |
|
437 |
</target> |
|
438 |
||
439 |
<!-- only to be invoked as dependency of "test" target --> |
|
440 |
<target name="-test-nosecurity" unless="test.class"> |
|
24586
601c81b4165d
8043443: Test framework changes to run script tests without security manager
sundar
parents:
24384
diff
changeset
|
441 |
<fileset id="test.nosecurity.classes" dir="${build.test.classes.dir}"> |
601c81b4165d
8043443: Test framework changes to run script tests without security manager
sundar
parents:
24384
diff
changeset
|
442 |
<include name="**/framework/ScriptTest.class"/> |
601c81b4165d
8043443: Test framework changes to run script tests without security manager
sundar
parents:
24384
diff
changeset
|
443 |
</fileset> |
27101
b8fffc2f66a3
8060238: Reports for optimistic test run overwrite those for pessimistic run
attila
parents:
26982
diff
changeset
|
444 |
<testng outputdir="${build.nosecurity.test.results.dir}/${testResultsSubDir}" classfilesetref="test.nosecurity.classes" |
24586
601c81b4165d
8043443: Test framework changes to run script tests without security manager
sundar
parents:
24384
diff
changeset
|
445 |
verbose="${testng.verbose}" haltonfailure="true" useDefaultListeners="false" listeners="${testng.listeners}" workingDir="${basedir}"> |
27571 | 446 |
<jvmarg line="${boot.class.path}"/> |
25675
556f675a6a12
8051019: Separate src and test execution sandbox directories
sundar
parents:
25586
diff
changeset
|
447 |
<jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx} -Dbuild.dir=${build.dir}"/> |
25586
cac6440168e2
8050964: OptimisticTypesPersistence.java should use java.util.Date instead of java.sql.Date
sundar
parents:
25250
diff
changeset
|
448 |
<sysproperty key="nashorn.jar" value="${dist.dir}/nashorn.jar"/> |
24586
601c81b4165d
8043443: Test framework changes to run script tests without security manager
sundar
parents:
24384
diff
changeset
|
449 |
<propertyset> |
601c81b4165d
8043443: Test framework changes to run script tests without security manager
sundar
parents:
24384
diff
changeset
|
450 |
<propertyref prefix="nashorn."/> |
601c81b4165d
8043443: Test framework changes to run script tests without security manager
sundar
parents:
24384
diff
changeset
|
451 |
</propertyset> |
601c81b4165d
8043443: Test framework changes to run script tests without security manager
sundar
parents:
24384
diff
changeset
|
452 |
<propertyset> |
601c81b4165d
8043443: Test framework changes to run script tests without security manager
sundar
parents:
24384
diff
changeset
|
453 |
<propertyref prefix="test-sys-prop-no-security."/> |
601c81b4165d
8043443: Test framework changes to run script tests without security manager
sundar
parents:
24384
diff
changeset
|
454 |
<mapper from="test-sys-prop-no-security.*" to="*" type="glob"/> |
601c81b4165d
8043443: Test framework changes to run script tests without security manager
sundar
parents:
24384
diff
changeset
|
455 |
</propertyset> |
26982
ff5dd57a40f2
8059811: Turn off optimistic typing by default and add both ant test-pessimistic and ant test-optimistic sub-test suites.
lagergren
parents:
26377
diff
changeset
|
456 |
<sysproperty key="optimistic.override" value="${optimistic}"/> |
24586
601c81b4165d
8043443: Test framework changes to run script tests without security manager
sundar
parents:
24384
diff
changeset
|
457 |
<classpath> |
601c81b4165d
8043443: Test framework changes to run script tests without security manager
sundar
parents:
24384
diff
changeset
|
458 |
<pathelement path="${run.test.classpath}"/> |
601c81b4165d
8043443: Test framework changes to run script tests without security manager
sundar
parents:
24384
diff
changeset
|
459 |
</classpath> |
601c81b4165d
8043443: Test framework changes to run script tests without security manager
sundar
parents:
24384
diff
changeset
|
460 |
</testng> |
16147 | 461 |
</target> |
462 |
||
24882 | 463 |
<!-- only to be invoked as dependency of "test" target --> |
464 |
<target name="-test-security"> |
|
465 |
<delete dir="${build.dir}/nashorn_code_cache"/> |
|
466 |
<property name="debug.test.jvmargs" value=""/> |
|
27101
b8fffc2f66a3
8060238: Reports for optimistic test run overwrite those for pessimistic run
attila
parents:
26982
diff
changeset
|
467 |
<testng outputdir="${build.test.results.dir}/${testResultsSubDir}" classfilesetref="test.classes" |
29407 | 468 |
verbose="${testng.verbose}" haltonfailure="true" useDefaultListeners="false" listeners="${testng.listeners}" workingDir="${basedir}"> |
27571 | 469 |
<jvmarg line="${boot.class.path}"/> |
25675
556f675a6a12
8051019: Separate src and test execution sandbox directories
sundar
parents:
25586
diff
changeset
|
470 |
<jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx} ${run.test.jvmsecurityargs} -Dbuild.dir=${build.dir}"/> |
24882 | 471 |
<jvmarg line="${debug.test.jvmargs}"/> |
472 |
<propertyset> |
|
473 |
<propertyref prefix="nashorn."/> |
|
474 |
</propertyset> |
|
475 |
<propertyset> |
|
476 |
<propertyref prefix="test-sys-prop."/> |
|
477 |
<mapper from="test-sys-prop.*" to="*" type="glob"/> |
|
478 |
</propertyset> |
|
26982
ff5dd57a40f2
8059811: Turn off optimistic typing by default and add both ant test-pessimistic and ant test-optimistic sub-test suites.
lagergren
parents:
26377
diff
changeset
|
479 |
<sysproperty key="optimistic.override" value="${optimistic}"/> |
24882 | 480 |
<sysproperty key="test.js.excludes.file" value="${exclude.list}"/> |
481 |
<classpath> |
|
482 |
<pathelement path="${run.test.classpath}"/> |
|
483 |
</classpath> |
|
484 |
</testng> |
|
485 |
</target> |
|
486 |
||
31492 | 487 |
<target name="test" depends="get-testng, javadocnh, test-pessimistic, test-optimistic"/> |
26982
ff5dd57a40f2
8059811: Turn off optimistic typing by default and add both ant test-pessimistic and ant test-optimistic sub-test suites.
lagergren
parents:
26377
diff
changeset
|
488 |
|
ff5dd57a40f2
8059811: Turn off optimistic typing by default and add both ant test-pessimistic and ant test-optimistic sub-test suites.
lagergren
parents:
26377
diff
changeset
|
489 |
<target name="test-optimistic" depends="jar, -test-classes-all,-test-classes-single, check-testng, check-external-tests, compile-test, generate-policy-file" if="testng.available"> |
ff5dd57a40f2
8059811: Turn off optimistic typing by default and add both ant test-pessimistic and ant test-optimistic sub-test suites.
lagergren
parents:
26377
diff
changeset
|
490 |
<echo message="Running test suite in OPTIMISTIC mode..."/> |
ff5dd57a40f2
8059811: Turn off optimistic typing by default and add both ant test-pessimistic and ant test-optimistic sub-test suites.
lagergren
parents:
26377
diff
changeset
|
491 |
<antcall target="-test-nosecurity" inheritRefs="true"> |
ff5dd57a40f2
8059811: Turn off optimistic typing by default and add both ant test-pessimistic and ant test-optimistic sub-test suites.
lagergren
parents:
26377
diff
changeset
|
492 |
<param name="optimistic" value="true"/> |
27101
b8fffc2f66a3
8060238: Reports for optimistic test run overwrite those for pessimistic run
attila
parents:
26982
diff
changeset
|
493 |
<param name="testResultsSubDir" value="optimistic"/> |
29407 | 494 |
</antcall> |
26982
ff5dd57a40f2
8059811: Turn off optimistic typing by default and add both ant test-pessimistic and ant test-optimistic sub-test suites.
lagergren
parents:
26377
diff
changeset
|
495 |
<antcall target="-test-security" inheritRefs="true"> |
ff5dd57a40f2
8059811: Turn off optimistic typing by default and add both ant test-pessimistic and ant test-optimistic sub-test suites.
lagergren
parents:
26377
diff
changeset
|
496 |
<param name="optimistic" value="true"/> |
27101
b8fffc2f66a3
8060238: Reports for optimistic test run overwrite those for pessimistic run
attila
parents:
26982
diff
changeset
|
497 |
<param name="testResultsSubDir" value="optimistic"/> |
26982
ff5dd57a40f2
8059811: Turn off optimistic typing by default and add both ant test-pessimistic and ant test-optimistic sub-test suites.
lagergren
parents:
26377
diff
changeset
|
498 |
</antcall> |
ff5dd57a40f2
8059811: Turn off optimistic typing by default and add both ant test-pessimistic and ant test-optimistic sub-test suites.
lagergren
parents:
26377
diff
changeset
|
499 |
</target> |
ff5dd57a40f2
8059811: Turn off optimistic typing by default and add both ant test-pessimistic and ant test-optimistic sub-test suites.
lagergren
parents:
26377
diff
changeset
|
500 |
|
ff5dd57a40f2
8059811: Turn off optimistic typing by default and add both ant test-pessimistic and ant test-optimistic sub-test suites.
lagergren
parents:
26377
diff
changeset
|
501 |
<target name="test-pessimistic" depends="jar, -test-classes-all,-test-classes-single, check-testng, check-external-tests, compile-test, generate-policy-file" if="testng.available"> |
ff5dd57a40f2
8059811: Turn off optimistic typing by default and add both ant test-pessimistic and ant test-optimistic sub-test suites.
lagergren
parents:
26377
diff
changeset
|
502 |
<echo message="Running test suite in PESSIMISTIC mode..."/> |
ff5dd57a40f2
8059811: Turn off optimistic typing by default and add both ant test-pessimistic and ant test-optimistic sub-test suites.
lagergren
parents:
26377
diff
changeset
|
503 |
<antcall target="-test-nosecurity" inheritRefs="true"> |
ff5dd57a40f2
8059811: Turn off optimistic typing by default and add both ant test-pessimistic and ant test-optimistic sub-test suites.
lagergren
parents:
26377
diff
changeset
|
504 |
<param name="optimistic" value="false"/> |
27101
b8fffc2f66a3
8060238: Reports for optimistic test run overwrite those for pessimistic run
attila
parents:
26982
diff
changeset
|
505 |
<param name="testResultsSubDir" value="pessimistic"/> |
29407 | 506 |
</antcall> |
26982
ff5dd57a40f2
8059811: Turn off optimistic typing by default and add both ant test-pessimistic and ant test-optimistic sub-test suites.
lagergren
parents:
26377
diff
changeset
|
507 |
<antcall target="-test-security" inheritRefs="true"> |
ff5dd57a40f2
8059811: Turn off optimistic typing by default and add both ant test-pessimistic and ant test-optimistic sub-test suites.
lagergren
parents:
26377
diff
changeset
|
508 |
<param name="optimistic" value="false"/> |
27101
b8fffc2f66a3
8060238: Reports for optimistic test run overwrite those for pessimistic run
attila
parents:
26982
diff
changeset
|
509 |
<param name="testResultsSubDir" value="pessimistic"/> |
26982
ff5dd57a40f2
8059811: Turn off optimistic typing by default and add both ant test-pessimistic and ant test-optimistic sub-test suites.
lagergren
parents:
26377
diff
changeset
|
510 |
</antcall> |
ff5dd57a40f2
8059811: Turn off optimistic typing by default and add both ant test-pessimistic and ant test-optimistic sub-test suites.
lagergren
parents:
26377
diff
changeset
|
511 |
</target> |
24882 | 512 |
|
21443
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
513 |
<target name="check-jemmy.jfx.testng" unless="jemmy.jfx.testng.available"> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
514 |
<echo message="WARNING: Jemmy or JavaFX or TestNG not available, will not run tests. Please copy testng.jar, JemmyCore.jar, JemmyFX.jar, JemmyAWTInput.jar under test${file.separator}lib directory. And make sure you have jfxrt.jar in ${java.home}${file.separator}lib${file.separator}ext dir."/> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
515 |
</target> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
516 |
|
30982
7c36fab40d4a
8081696: reduce dependency of Nashorn tests on external components
mhaupt
parents:
30981
diff
changeset
|
517 |
<target name="testjfx" depends="jar, get-testng, check-jemmy.jfx.testng, compile-test" if="jemmy.jfx.testng.available"> |
21443
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
518 |
<fileset id="test.classes" dir="${build.test.classes.dir}"> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
519 |
<include name="**/framework/*Test.class"/> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
520 |
</fileset> |
24768
ae21f28f0ddc
8044102: Ensure bechmark exclude list for Octane benchmarks is in only one place, project.properties, and fix benchmark harness
lagergren
parents:
24767
diff
changeset
|
521 |
|
21443
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
522 |
<copy file="${file.reference.jfxrt.jar}" todir="dist"/> |
24768
ae21f28f0ddc
8044102: Ensure bechmark exclude list for Octane benchmarks is in only one place, project.properties, and fix benchmark harness
lagergren
parents:
24767
diff
changeset
|
523 |
|
21690
ffbb4611d1f4
8027708: NASHORN TEST: Create Nashorn test that draws image step-by-step using JavaFX canvas.
kshefov
parents:
21443
diff
changeset
|
524 |
<condition property="jfx.prism.order" value="-Dprism.order=j2d" else=" "> |
24768
ae21f28f0ddc
8044102: Ensure bechmark exclude list for Octane benchmarks is in only one place, project.properties, and fix benchmark harness
lagergren
parents:
24767
diff
changeset
|
525 |
<not> |
21690
ffbb4611d1f4
8027708: NASHORN TEST: Create Nashorn test that draws image step-by-step using JavaFX canvas.
kshefov
parents:
21443
diff
changeset
|
526 |
<os family="mac"/> |
ffbb4611d1f4
8027708: NASHORN TEST: Create Nashorn test that draws image step-by-step using JavaFX canvas.
kshefov
parents:
21443
diff
changeset
|
527 |
</not> |
24768
ae21f28f0ddc
8044102: Ensure bechmark exclude list for Octane benchmarks is in only one place, project.properties, and fix benchmark harness
lagergren
parents:
24767
diff
changeset
|
528 |
</condition> |
ae21f28f0ddc
8044102: Ensure bechmark exclude list for Octane benchmarks is in only one place, project.properties, and fix benchmark harness
lagergren
parents:
24767
diff
changeset
|
529 |
|
21443
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
530 |
<testng outputdir="${build.test.results.dir}" classfilesetref="test.classes" |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
531 |
verbose="${testng.verbose}" haltonfailure="true" useDefaultListeners="false" listeners="${testng.listeners}" workingDir="${basedir}"> |
28880
4958f80c2d24
8069182: Nightly test results are empty for targets test262/markdown/testjfx
slugovoy
parents:
28126
diff
changeset
|
532 |
<jvmarg line="${boot.class.path}"/> |
25675
556f675a6a12
8051019: Separate src and test execution sandbox directories
sundar
parents:
25586
diff
changeset
|
533 |
<jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx} -Dbuild.dir=${build.dir}"/> |
21443
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
534 |
<propertyset> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
535 |
<propertyref prefix="testjfx-test-sys-prop."/> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
536 |
<mapper from="testjfx-test-sys-prop.*" to="*" type="glob"/> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
537 |
</propertyset> |
21690
ffbb4611d1f4
8027708: NASHORN TEST: Create Nashorn test that draws image step-by-step using JavaFX canvas.
kshefov
parents:
21443
diff
changeset
|
538 |
<sysproperty key="test.fork.jvm.options" value="${testjfx-test-sys-prop.test.fork.jvm.options} ${jfx.prism.order}"/> |
21443
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
539 |
<classpath> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
540 |
<pathelement path="${testjfx.run.test.classpath}"/> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
541 |
</classpath> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
542 |
</testng> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
543 |
</target> |
24768
ae21f28f0ddc
8044102: Ensure bechmark exclude list for Octane benchmarks is in only one place, project.properties, and fix benchmark harness
lagergren
parents:
24767
diff
changeset
|
544 |
|
30982
7c36fab40d4a
8081696: reduce dependency of Nashorn tests on external components
mhaupt
parents:
30981
diff
changeset
|
545 |
<target name="testmarkdown" depends="jar, get-testng, check-testng, check-external-tests, compile-test, generate-policy-file" if="testng.available"> |
22371
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
546 |
<fileset id="test.classes" dir="${build.test.classes.dir}"> |
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
547 |
<include name="**/framework/*Test.class"/> |
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
548 |
</fileset> |
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
549 |
|
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
550 |
<testng outputdir="${build.test.results.dir}" classfilesetref="test.classes" |
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
551 |
verbose="${testng.verbose}" haltonfailure="true" useDefaultListeners="false" listeners="${testng.listeners}" workingDir="${basedir}"> |
28880
4958f80c2d24
8069182: Nightly test results are empty for targets test262/markdown/testjfx
slugovoy
parents:
28126
diff
changeset
|
552 |
<jvmarg line="${boot.class.path}"/> |
25675
556f675a6a12
8051019: Separate src and test execution sandbox directories
sundar
parents:
25586
diff
changeset
|
553 |
<jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx} ${run.test.jvmsecurityargs} -Dbuild.dir=${build.dir}"/> |
22371
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
554 |
<propertyset> |
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
555 |
<propertyref prefix="testmarkdown-test-sys-prop."/> |
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
556 |
<mapper from="testmarkdown-test-sys-prop.*" to="*" type="glob"/> |
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
557 |
</propertyset> |
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
558 |
<classpath> |
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
559 |
<pathelement path="${run.test.classpath}"/> |
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
560 |
</classpath> |
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
561 |
</testng> |
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
562 |
</target> |
24768
ae21f28f0ddc
8044102: Ensure bechmark exclude list for Octane benchmarks is in only one place, project.properties, and fix benchmark harness
lagergren
parents:
24767
diff
changeset
|
563 |
|
30982
7c36fab40d4a
8081696: reduce dependency of Nashorn tests on external components
mhaupt
parents:
30981
diff
changeset
|
564 |
<target name="test262" depends="jar, get-testng, check-testng, check-external-tests, compile-test, generate-policy-file" if="testng.available"> |
16147 | 565 |
<fileset id="test.classes" dir="${build.test.classes.dir}"> |
566 |
<include name="**/framework/*Test.class"/> |
|
567 |
</fileset> |
|
568 |
||
569 |
<testng outputdir="${build.test.results.dir}" classfilesetref="test.classes" |
|
570 |
verbose="${testng.verbose}" haltonfailure="true" useDefaultListeners="false" listeners="${testng.listeners}" workingDir="${basedir}"> |
|
28880
4958f80c2d24
8069182: Nightly test results are empty for targets test262/markdown/testjfx
slugovoy
parents:
28126
diff
changeset
|
571 |
<jvmarg line="${boot.class.path}"/> |
25675
556f675a6a12
8051019: Separate src and test execution sandbox directories
sundar
parents:
25586
diff
changeset
|
572 |
<jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx} ${run.test.jvmsecurityargs} -Dbuild.dir=${build.dir}"/> |
16147 | 573 |
<propertyset> |
22366
1db7c8634626
8029090: Developers should be able to pass nashorn properties and enable/disable JFR from command line
sundar
parents:
20564
diff
changeset
|
574 |
<propertyref prefix="nashorn."/> |
1db7c8634626
8029090: Developers should be able to pass nashorn properties and enable/disable JFR from command line
sundar
parents:
20564
diff
changeset
|
575 |
</propertyset> |
1db7c8634626
8029090: Developers should be able to pass nashorn properties and enable/disable JFR from command line
sundar
parents:
20564
diff
changeset
|
576 |
<propertyset> |
16147 | 577 |
<propertyref prefix="test262-test-sys-prop."/> |
578 |
<mapper from="test262-test-sys-prop.*" to="*" type="glob"/> |
|
579 |
</propertyset> |
|
580 |
<classpath> |
|
581 |
<pathelement path="${run.test.classpath}"/> |
|
582 |
</classpath> |
|
583 |
</testng> |
|
584 |
</target> |
|
585 |
||
586 |
<target name="test262parallel" depends="test262-parallel"/> |
|
587 |
||
30982
7c36fab40d4a
8081696: reduce dependency of Nashorn tests on external components
mhaupt
parents:
30981
diff
changeset
|
588 |
<target name="test262-parallel" depends="jar, get-testng, check-testng, check-external-tests, compile-test, generate-policy-file" if="testng.available"> |
16147 | 589 |
<!-- use just build.test.classes.dir to avoid referring to TestNG --> |
16231
9c8790061bee
8008193: test262 tests should be run with security manager enabled
sundar
parents:
16226
diff
changeset
|
590 |
<java classname="${parallel.test.runner}" dir="${basedir}" fork="true"> |
27571 | 591 |
<jvmarg line="${boot.class.path}"/> |
25675
556f675a6a12
8051019: Separate src and test execution sandbox directories
sundar
parents:
25586
diff
changeset
|
592 |
<jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx} ${run.test.jvmsecurityargs} -Dbuild.dir=${build.dir}"/> |
26062
13bf95834477
8054993: type info cache may be disabled for test262 and tests explicitly changing that property should use @fork
sundar
parents:
26054
diff
changeset
|
593 |
<!-- avoid too many typeinfo cache files. Each script is run only once anyway --> |
13bf95834477
8054993: type info cache may be disabled for test262 and tests explicitly changing that property should use @fork
sundar
parents:
26054
diff
changeset
|
594 |
<jvmarg line="-Dnashorn.typeInfo.disabled=true"/> |
16231
9c8790061bee
8008193: test262 tests should be run with security manager enabled
sundar
parents:
16226
diff
changeset
|
595 |
<classpath> |
9c8790061bee
8008193: test262 tests should be run with security manager enabled
sundar
parents:
16226
diff
changeset
|
596 |
<pathelement path="${run.test.classpath}"/> |
9c8790061bee
8008193: test262 tests should be run with security manager enabled
sundar
parents:
16226
diff
changeset
|
597 |
</classpath> |
16147 | 598 |
<syspropertyset> |
599 |
<propertyref prefix="test262-test-sys-prop."/> |
|
600 |
<mapper type="glob" from="test262-test-sys-prop.*" to="*"/> |
|
601 |
</syspropertyset> |
|
602 |
</java> |
|
603 |
</target> |
|
604 |
||
24719 | 605 |
<target name="testparallel" depends="test-parallel"/> |
606 |
||
30982
7c36fab40d4a
8081696: reduce dependency of Nashorn tests on external components
mhaupt
parents:
30981
diff
changeset
|
607 |
<target name="test-parallel" depends="jar, get-testng, check-testng, check-external-tests, compile-test, generate-policy-file" if="testng.available"> |
24719 | 608 |
<!-- use just build.test.classes.dir to avoid referring to TestNG --> |
609 |
<java classname="${parallel.test.runner}" dir="${basedir}" |
|
24768
ae21f28f0ddc
8044102: Ensure bechmark exclude list for Octane benchmarks is in only one place, project.properties, and fix benchmark harness
lagergren
parents:
24767
diff
changeset
|
610 |
failonerror="true" |
ae21f28f0ddc
8044102: Ensure bechmark exclude list for Octane benchmarks is in only one place, project.properties, and fix benchmark harness
lagergren
parents:
24767
diff
changeset
|
611 |
fork="true"> |
27571 | 612 |
<jvmarg line="${boot.class.path}"/> |
24719 | 613 |
<jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx} ${run.test.jvmsecurityargs}"/> |
614 |
<classpath> |
|
615 |
<pathelement path="${run.test.classpath}"/> |
|
24768
ae21f28f0ddc
8044102: Ensure bechmark exclude list for Octane benchmarks is in only one place, project.properties, and fix benchmark harness
lagergren
parents:
24767
diff
changeset
|
616 |
<pathelement path="${build.test.classes.dir}"/> |
24719 | 617 |
</classpath> |
618 |
<syspropertyset> |
|
619 |
<propertyref prefix="test-sys-prop."/> |
|
620 |
<mapper type="glob" from="test-sys-prop.*" to="*"/> |
|
621 |
</syspropertyset> |
|
622 |
</java> |
|
623 |
</target> |
|
624 |
||
16147 | 625 |
<target name="all" depends="test, docs" |
626 |
description="Build, test and generate docs for nashorn"/> |
|
627 |
||
628 |
<target name="run" depends="jar" |
|
629 |
description="Run the shell with a sample script"> |
|
630 |
<java classname="${nashorn.shell.tool}" fork="true" dir="samples"> |
|
27571 | 631 |
<jvmarg line="${boot.class.path}"/> |
20212
5e7711039ab0
8023154: compileAllTests fails with: 2 tests failed to compile
hannesw
parents:
19895
diff
changeset
|
632 |
<jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx}"/> |
16147 | 633 |
<arg value="-dump-on-error"/> |
634 |
<arg value="test.js"/> |
|
635 |
</java> |
|
636 |
</target> |
|
637 |
||
638 |
<target name="debug" depends="jar" |
|
639 |
description="Debug the shell with a sample script"> |
|
640 |
<java classname="${nashorn.shell.tool}" fork="true" dir="samples"> |
|
27571 | 641 |
<jvmarg line="${boot.class.path}"/> |
20212
5e7711039ab0
8023154: compileAllTests fails with: 2 tests failed to compile
hannesw
parents:
19895
diff
changeset
|
642 |
<jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx}"/> |
16147 | 643 |
<arg value="--print-code"/> |
644 |
<arg value="--verify-code"/> |
|
645 |
<arg value="--print-symbols"/> |
|
646 |
<jvmarg value="-Dnashorn.codegen.debug=true"/> |
|
647 |
<arg value="test.js"/> |
|
648 |
</java> |
|
649 |
</target> |
|
16163
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
650 |
|
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
651 |
<!-- targets to get external script tests --> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
652 |
|
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
653 |
<!-- test262 test suite --> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
654 |
<target name="get-test262" depends="init" unless="${test-sys-prop.external.test262}"> |
23764 | 655 |
<!-- clone test262 git repo --> |
656 |
<exec executable="${git.executable}"> |
|
16163
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
657 |
<arg value="clone"/> |
26054
3d9f96f3d540
8051346: Test262 tests for ECMAScript 5 now in branch "es5-tests"
sundar
parents:
25675
diff
changeset
|
658 |
<arg value="--branch"/> |
3d9f96f3d540
8051346: Test262 tests for ECMAScript 5 now in branch "es5-tests"
sundar
parents:
25675
diff
changeset
|
659 |
<arg value="es5-tests"/> |
23764 | 660 |
<arg value="https://github.com/tc39/test262"/> |
16163
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
661 |
<arg value="${test.external.dir}/test262"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
662 |
</exec> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
663 |
</target> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
664 |
<target name="update-test262" depends="init" if="${test-sys-prop.external.test262}"> |
23764 | 665 |
<!-- update test262 git repo --> |
666 |
<exec executable="${git.executable}" dir="${test.external.dir}/test262"> |
|
16163
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
667 |
<arg value="pull"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
668 |
</exec> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
669 |
</target> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
670 |
|
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
671 |
<!-- octane benchmark --> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
672 |
<target name="get-octane" depends="init" unless="${test-sys-prop.external.octane}"> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
673 |
<!-- checkout octane benchmarks --> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
674 |
<exec executable="${svn.executable}"> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
675 |
<arg value="--non-interactive"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
676 |
<arg value="--trust-server-cert"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
677 |
<arg value="checkout"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
678 |
<arg value="http://octane-benchmark.googlecode.com/svn/trunk/"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
679 |
<arg value="${test.external.dir}/octane"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
680 |
</exec> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
681 |
</target> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
682 |
<target name="update-octane" depends="init" if="${test-sys-prop.external.octane}"> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
683 |
<!-- update octane benchmarks --> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
684 |
<exec executable="${svn.executable}" dir="${test.external.dir}/octane"> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
685 |
<arg value="--non-interactive"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
686 |
<arg value="--trust-server-cert"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
687 |
<arg value="update"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
688 |
</exec> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
689 |
</target> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
690 |
|
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
691 |
<!-- sunspider benchmark --> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
692 |
<target name="get-sunspider" depends="init" unless="${test-sys-prop.external.sunspider}"> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
693 |
<!-- checkout sunspider --> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
694 |
<exec executable="${svn.executable}"> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
695 |
<arg value="--non-interactive"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
696 |
<arg value="--trust-server-cert"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
697 |
<arg value="checkout"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
698 |
<arg value="http://svn.webkit.org/repository/webkit/trunk/PerformanceTests/SunSpider"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
699 |
<arg value="${test.external.dir}/sunspider"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
700 |
</exec> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
701 |
</target> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
702 |
<target name="update-sunspider" depends="init" if="${test-sys-prop.external.sunspider}"> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
703 |
<!-- update sunspider --> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
704 |
<exec executable="${svn.executable}" dir="${test.external.dir}/sunspider"> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
705 |
<arg value="--non-interactive"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
706 |
<arg value="--trust-server-cert"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
707 |
<arg value="update"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
708 |
</exec> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
709 |
</target> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
710 |
|
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
711 |
<!-- get all external test scripts --> |
30981
7ef4e72901cf
8080275: transparently download testng.jar for Nashorn testing
mhaupt
parents:
30980
diff
changeset
|
712 |
<target name="externals" depends="init, check-external-tests, get-test262, get-octane, get-sunspider, get-testng"> |
16163
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
713 |
<!-- make external test dir --> |
18630
48e3dc4bf0f6
8019580: Build Script Change for Nashorn promotion testing
jlaskey
parents:
17767
diff
changeset
|
714 |
<mkdir dir="${test.external.dir}"/> |
16163
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
715 |
|
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
716 |
<!-- jquery --> |
18630
48e3dc4bf0f6
8019580: Build Script Change for Nashorn promotion testing
jlaskey
parents:
17767
diff
changeset
|
717 |
<mkdir dir="${test.external.dir}/jquery"/> |
16163
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
718 |
<get src="http://code.jquery.com/jquery-1.7.2.js" dest="${test.external.dir}/jquery" skipexisting="true" ignoreerrors="true"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
719 |
<get src="http://code.jquery.com/jquery-1.7.2.min.js" dest="${test.external.dir}/jquery" skipexisting="true" ignoreerrors="true"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
720 |
|
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
721 |
<!-- prototype --> |
18630
48e3dc4bf0f6
8019580: Build Script Change for Nashorn promotion testing
jlaskey
parents:
17767
diff
changeset
|
722 |
<mkdir dir="${test.external.dir}/prototype"/> |
16163
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
723 |
<get src="http://ajax.googleapis.com/ajax/libs/prototype/1.7.0/prototype.js" dest="${test.external.dir}/prototype" usetimestamp="true" skipexisting="true" ignoreerrors="true"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
724 |
|
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
725 |
<!-- underscorejs --> |
18630
48e3dc4bf0f6
8019580: Build Script Change for Nashorn promotion testing
jlaskey
parents:
17767
diff
changeset
|
726 |
<mkdir dir="${test.external.dir}/underscore"/> |
16163
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
727 |
<get src="http://underscorejs.org/underscore.js" dest="${test.external.dir}/underscore" skipexisting="true" ignoreerrors="true"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
728 |
<get src="http://underscorejs.org/underscore-min.js" dest="${test.external.dir}/underscore" skipexisting="true" ignoreerrors="true"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
729 |
|
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
730 |
<!-- yui --> |
18630
48e3dc4bf0f6
8019580: Build Script Change for Nashorn promotion testing
jlaskey
parents:
17767
diff
changeset
|
731 |
<mkdir dir="${test.external.dir}/yui"/> |
16163
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
732 |
<get src="http://yui.yahooapis.com/3.5.1/build/yui/yui.js" dest="${test.external.dir}/yui" skipexisting="true" ignoreerrors="true"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
733 |
<get src="http://yui.yahooapis.com/3.5.1/build/yui/yui-min.js" dest="${test.external.dir}/yui" skipexisting="true" ignoreerrors="true"/> |
24768
ae21f28f0ddc
8044102: Ensure bechmark exclude list for Octane benchmarks is in only one place, project.properties, and fix benchmark harness
lagergren
parents:
24767
diff
changeset
|
734 |
|
22371
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
735 |
<!-- showdown --> |
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
736 |
<mkdir dir="${test.external.dir}/showdown"/> |
30980 | 737 |
<get src="https://raw.githubusercontent.com/showdownjs/showdown/0.5.4/src/showdown.js" dest="${test.external.dir}/showdown" skipexisting="true" ignoreerrors="true"/> |
738 |
<get src="https://raw.githubusercontent.com/showdownjs/showdown/0.5.4/src/extensions/table.js" dest="${test.external.dir}/showdown" skipexisting="true" ignoreerrors="true"/> |
|
16163
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
739 |
|
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
740 |
</target> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
741 |
|
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
742 |
<!-- update external test suites that are pulled from source control systems --> |
16170
9e3f4e0b519b
8006093: Add a makefile target to run all tests (test, test262, perf tests)
sundar
parents:
16163
diff
changeset
|
743 |
<target name="update-externals" depends="init, check-external-tests, update-test262, update-octane, update-sunspider"/> |
9e3f4e0b519b
8006093: Add a makefile target to run all tests (test, test262, perf tests)
sundar
parents:
16163
diff
changeset
|
744 |
|
9e3f4e0b519b
8006093: Add a makefile target to run all tests (test, test262, perf tests)
sundar
parents:
16163
diff
changeset
|
745 |
<!-- run all perf tests --> |
9e3f4e0b519b
8006093: Add a makefile target to run all tests (test, test262, perf tests)
sundar
parents:
16163
diff
changeset
|
746 |
<target name="perf" depends="externals, update-externals, sunspider, octane"/> |
9e3f4e0b519b
8006093: Add a makefile target to run all tests (test, test262, perf tests)
sundar
parents:
16163
diff
changeset
|
747 |
|
30981
7ef4e72901cf
8080275: transparently download testng.jar for Nashorn testing
mhaupt
parents:
30980
diff
changeset
|
748 |
<!-- download and install testng.jar --> |
30982
7c36fab40d4a
8081696: reduce dependency of Nashorn tests on external components
mhaupt
parents:
30981
diff
changeset
|
749 |
<target name="get-testng" depends="prepare" unless="testng.available"> |
30981
7ef4e72901cf
8080275: transparently download testng.jar for Nashorn testing
mhaupt
parents:
30980
diff
changeset
|
750 |
<get src="http://testng.org/testng-6.8.zip" dest="${test.lib}" skipexisting="true" ignoreerrors="true"/> |
7ef4e72901cf
8080275: transparently download testng.jar for Nashorn testing
mhaupt
parents:
30980
diff
changeset
|
751 |
<unzip src="${test.lib}${file.separator}testng-6.8.zip" dest="${test.lib}"> |
7ef4e72901cf
8080275: transparently download testng.jar for Nashorn testing
mhaupt
parents:
30980
diff
changeset
|
752 |
<patternset> |
7ef4e72901cf
8080275: transparently download testng.jar for Nashorn testing
mhaupt
parents:
30980
diff
changeset
|
753 |
<include name="testng-6.8/testng-6.8.jar"/> |
7ef4e72901cf
8080275: transparently download testng.jar for Nashorn testing
mhaupt
parents:
30980
diff
changeset
|
754 |
</patternset> |
7ef4e72901cf
8080275: transparently download testng.jar for Nashorn testing
mhaupt
parents:
30980
diff
changeset
|
755 |
</unzip> |
7ef4e72901cf
8080275: transparently download testng.jar for Nashorn testing
mhaupt
parents:
30980
diff
changeset
|
756 |
<move file="${test.lib}${file.separator}testng-6.8${file.separator}testng-6.8.jar" tofile="${test.lib}${file.separator}testng.jar"/> |
7ef4e72901cf
8080275: transparently download testng.jar for Nashorn testing
mhaupt
parents:
30980
diff
changeset
|
757 |
<delete dir="${test.lib}${file.separator}testng-6.8"/> |
7ef4e72901cf
8080275: transparently download testng.jar for Nashorn testing
mhaupt
parents:
30980
diff
changeset
|
758 |
</target> |
7ef4e72901cf
8080275: transparently download testng.jar for Nashorn testing
mhaupt
parents:
30980
diff
changeset
|
759 |
|
30982
7c36fab40d4a
8081696: reduce dependency of Nashorn tests on external components
mhaupt
parents:
30981
diff
changeset
|
760 |
<!-- run all tests --> |
7c36fab40d4a
8081696: reduce dependency of Nashorn tests on external components
mhaupt
parents:
30981
diff
changeset
|
761 |
<target name="alltests" depends="get-testng, externals, update-externals, test, test262parallel, testmarkdown, perf"/> |
16163
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
762 |
|
24767
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24756
diff
changeset
|
763 |
<import file="build-benchmark.xml"/> |
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24756
diff
changeset
|
764 |
|
16147 | 765 |
</project> |