author | never |
Thu, 29 Sep 2016 10:00:56 -0700 | |
changeset 41697 | 94ef14db8a20 |
parent 40286 | ba60b24b1308 |
child 42238 | 4d6b6b542dde |
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 |
|
39789
297cda6b049d
8160953: Update build-nagen-eclipse task to work with JDK 9
attila
parents:
38809
diff
changeset
|
30 |
<target name="load-properties"> |
16255 | 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"/> |
39789
297cda6b049d
8160953: Update build-nagen-eclipse task to work with JDK 9
attila
parents:
38809
diff
changeset
|
35 |
</target> |
297cda6b049d
8160953: Update build-nagen-eclipse task to work with JDK 9
attila
parents:
38809
diff
changeset
|
36 |
|
297cda6b049d
8160953: Update build-nagen-eclipse task to work with JDK 9
attila
parents:
38809
diff
changeset
|
37 |
<target name="init-conditions" depends="load-properties"> |
36517 | 38 |
<path id="nashorn.jar.path"> |
39 |
<pathelement location="${nashorn.jar}"/> |
|
26239
f38221b60b31
8055878: Nashorn: all tests failed with AccessControlException
yan
parents:
26236
diff
changeset
|
40 |
</path> |
16163
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
41 |
<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
|
42 |
<available file="/usr/local/bin/svn"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
43 |
</condition> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
44 |
<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
|
45 |
<available file="/usr/local/bin/hg"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
46 |
</condition> |
23764 | 47 |
<condition property="git.executable" value="/usr/local/bin/git" else="git"> |
48 |
<available file="/usr/local/bin/git"/> |
|
49 |
</condition> |
|
35797
148bb1cd62e5
8149744: fix testng.jar delivery in Nashorn build.xml
mhaupt
parents:
34738
diff
changeset
|
50 |
<!-- check if TestNG and dependencies are available, and download them if they aren't --> |
31829
fa5c0e50b2cf
8131142: late-bind check for testng.jar presence in Nashorn test execution
mhaupt
parents:
31492
diff
changeset
|
51 |
<antcall target="get-testng"/> |
35797
148bb1cd62e5
8149744: fix testng.jar delivery in Nashorn build.xml
mhaupt
parents:
34738
diff
changeset
|
52 |
<condition property="testng.available" value="true"> |
148bb1cd62e5
8149744: fix testng.jar delivery in Nashorn build.xml
mhaupt
parents:
34738
diff
changeset
|
53 |
<and> |
148bb1cd62e5
8149744: fix testng.jar delivery in Nashorn build.xml
mhaupt
parents:
34738
diff
changeset
|
54 |
<available file="${file.reference.testng.jar}"/> |
148bb1cd62e5
8149744: fix testng.jar delivery in Nashorn build.xml
mhaupt
parents:
34738
diff
changeset
|
55 |
<available file="${file.reference.jcommander.jar}"/> |
148bb1cd62e5
8149744: fix testng.jar delivery in Nashorn build.xml
mhaupt
parents:
34738
diff
changeset
|
56 |
<available file="${file.reference.bsh.jar}"/> |
148bb1cd62e5
8149744: fix testng.jar delivery in Nashorn build.xml
mhaupt
parents:
34738
diff
changeset
|
57 |
<available file="${file.reference.snakeyaml.jar}"/> |
148bb1cd62e5
8149744: fix testng.jar delivery in Nashorn build.xml
mhaupt
parents:
34738
diff
changeset
|
58 |
</and> |
148bb1cd62e5
8149744: fix testng.jar delivery in Nashorn build.xml
mhaupt
parents:
34738
diff
changeset
|
59 |
</condition> |
34447
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
60 |
|
34731
585a112b3719
8144221: fix Nashorn shebang argument handling on Mac/Linux
mhaupt
parents:
34456
diff
changeset
|
61 |
<!-- check if asmtools-6.0.jar is available, and download it if it isn't --> |
34447
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
62 |
<!-- |
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
63 |
<available property="asmtools.already.present" file="${file.reference.asmtools.jar}"/> |
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
64 |
<antcall target="get-asmtools"/> |
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
65 |
<available property="asmtools.available" file="${file.reference.asmtools.jar}"/> |
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
66 |
--> |
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
67 |
|
35797
148bb1cd62e5
8149744: fix testng.jar delivery in Nashorn build.xml
mhaupt
parents:
34738
diff
changeset
|
68 |
<!-- check if Jemmy ang TestNG are avaiable --> |
21443
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
69 |
<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
|
70 |
<and> |
21443
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
71 |
<available file="${file.reference.jemmyfx.jar}"/> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
72 |
<available file="${file.reference.jemmycore.jar}"/> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
73 |
<available file="${file.reference.jemmyawtinput.jar}"/> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
74 |
<available file="${file.reference.jfxrt.jar}"/> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
75 |
<isset property="testng.available"/> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
76 |
</and> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
77 |
</condition> |
16255 | 78 |
|
19103
3905e242e69c
8020719: Run tests with reduced splitter threshold
hannesw
parents:
19087
diff
changeset
|
79 |
<!-- enable/disable make code coverage --> |
3905e242e69c
8020719: Run tests with reduced splitter threshold
hannesw
parents:
19087
diff
changeset
|
80 |
<condition property="cc.enabled"> |
3905e242e69c
8020719: Run tests with reduced splitter threshold
hannesw
parents:
19087
diff
changeset
|
81 |
<istrue value="${make.code.coverage}" /> |
3905e242e69c
8020719: Run tests with reduced splitter threshold
hannesw
parents:
19087
diff
changeset
|
82 |
</condition> |
19082
6926097854f6
8017585: Exclude two failing tests from Nashorn CC run
jlaskey
parents:
18865
diff
changeset
|
83 |
|
6926097854f6
8017585: Exclude two failing tests from Nashorn CC run
jlaskey
parents:
18865
diff
changeset
|
84 |
<!-- exclude tests in exclude lists --> |
6926097854f6
8017585: Exclude two failing tests from Nashorn CC run
jlaskey
parents:
18865
diff
changeset
|
85 |
<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
|
86 |
<istrue value="${make.code.coverage}" /> |
6926097854f6
8017585: Exclude two failing tests from Nashorn CC run
jlaskey
parents:
18865
diff
changeset
|
87 |
</condition> |
22366
1db7c8634626
8029090: Developers should be able to pass nashorn properties and enable/disable JFR from command line
sundar
parents:
20564
diff
changeset
|
88 |
|
1db7c8634626
8029090: Developers should be able to pass nashorn properties and enable/disable JFR from command line
sundar
parents:
20564
diff
changeset
|
89 |
<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
|
90 |
<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
|
91 |
</condition> |
34731
585a112b3719
8144221: fix Nashorn shebang argument handling on Mac/Linux
mhaupt
parents:
34456
diff
changeset
|
92 |
|
585a112b3719
8144221: fix Nashorn shebang argument handling on Mac/Linux
mhaupt
parents:
34456
diff
changeset
|
93 |
<condition property="test-sys-prop-no-security.os.not.windows"> |
585a112b3719
8144221: fix Nashorn shebang argument handling on Mac/Linux
mhaupt
parents:
34456
diff
changeset
|
94 |
<not> |
585a112b3719
8144221: fix Nashorn shebang argument handling on Mac/Linux
mhaupt
parents:
34456
diff
changeset
|
95 |
<os family="windows"/> |
585a112b3719
8144221: fix Nashorn shebang argument handling on Mac/Linux
mhaupt
parents:
34456
diff
changeset
|
96 |
</not> |
585a112b3719
8144221: fix Nashorn shebang argument handling on Mac/Linux
mhaupt
parents:
34456
diff
changeset
|
97 |
</condition> |
36689 | 98 |
|
99 |
<!--set windows cygwin/cmd specific properties--> |
|
100 |
<property environment="env"/> |
|
101 |
<condition property="test-sys-prop-no-security.os.not.windows.cmd"> |
|
102 |
<not> |
|
103 |
<and> |
|
104 |
<os family="windows"/> |
|
105 |
<not> |
|
106 |
<isset property="env.SHELL"/> |
|
107 |
</not> |
|
108 |
</and> |
|
109 |
</not> |
|
110 |
</condition> |
|
111 |
</target> |
|
112 |
||
27205
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
113 |
|
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
114 |
<!-- 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
|
115 |
<target name="check-ant-version"> |
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
116 |
<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
|
117 |
<antversion property="ant.current.version" /> |
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
118 |
<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
|
119 |
<condition> |
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
120 |
<not> |
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
121 |
<antversion atleast="${ant.version.required}"/> |
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
122 |
</not> |
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
123 |
</condition> |
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
124 |
</fail> |
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
125 |
</target> |
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
126 |
|
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
127 |
<target name="check-java-version"> |
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
128 |
<!-- 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
|
129 |
<!-- 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
|
130 |
<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
|
131 |
|
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
132 |
<!-- need jdk1.8 or above --> |
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
133 |
<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
|
134 |
</fail> |
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
135 |
</target> |
29407 | 136 |
|
27205
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
137 |
<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
|
138 |
<!-- 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
|
139 |
<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
|
140 |
<property name="run.test.jvmargs.octane" value="${run.test.jvmargs.octane.main} ${run.test.cc.jvmargs} ${jfr.options}"/> |
16255 | 141 |
|
142 |
<echo message="run.test.jvmargs=${run.test.jvmargs}"/> |
|
143 |
<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
|
144 |
<echo message="run.test.xms=${run.test.xms}"/> |
5e7711039ab0
8023154: compileAllTests fails with: 2 tests failed to compile
hannesw
parents:
19895
diff
changeset
|
145 |
<echo message="run.test.xmx=${run.test.xmx}"/> |
16255 | 146 |
|
16147 | 147 |
</target> |
148 |
||
149 |
<target name="prepare" depends="init"> |
|
150 |
<mkdir dir="${build.dir}"/> |
|
151 |
<mkdir dir="${build.classes.dir}"/> |
|
36517 | 152 |
<mkdir dir="${nashorn.module.classes.dir}"/> |
153 |
<mkdir dir="${dynalink.module.classes.dir}"/> |
|
154 |
<mkdir dir="${nashorn.shell.module.classes.dir}"/> |
|
155 |
<mkdir dir="${nashorn.module.classes.dir}/META-INF/services"/> |
|
16147 | 156 |
<mkdir dir="${build.test.classes.dir}"/> |
157 |
<mkdir dir="${dist.dir}"/> |
|
158 |
<mkdir dir="${dist.javadoc.dir}"/> |
|
159 |
</target> |
|
160 |
||
16255 | 161 |
<target name="clean" depends="init, clean-nasgen, init-cc-cleanup"> |
16147 | 162 |
<delete includeemptydirs="true"> |
16234
86cb162cec6c
8008085: Integrate Dynalink source code into Nashorn codebase
attila
parents:
16231
diff
changeset
|
163 |
<fileset dir="${build.dir}" erroronmissingdir="false"/> |
16147 | 164 |
</delete> |
165 |
<delete dir="${dist.dir}"/> |
|
166 |
</target> |
|
167 |
||
27205
72207261e641
8061257: nashorn ant build script should have a sanity target
sundar
parents:
27101
diff
changeset
|
168 |
<target name="compile" depends="prepare" description="Compiles nashorn"> |
36517 | 169 |
<javac srcdir="${dynalink.module.src.dir}" |
170 |
destdir="${dynalink.module.classes.dir}" |
|
16147 | 171 |
source="${javac.source}" |
172 |
target="${javac.target}" |
|
173 |
debug="${javac.debug}" |
|
174 |
encoding="${javac.encoding}" |
|
18851
bdb92c95f886
8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
18841
diff
changeset
|
175 |
includeantruntime="false" fork="true"> |
25250
b5a4e0ac31d1
8047359: large string size RangeError should be thrown rather than reporting negative length
sundar
parents:
24882
diff
changeset
|
176 |
<compilerarg value="-Xlint:all"/> |
16147 | 177 |
<compilerarg value="-XDignore.symbol.file"/> |
23375
a1110f2cbe75
8037400: Remove getInitialMap getters and GlobalObject interface
sundar
parents:
23372
diff
changeset
|
178 |
<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
|
179 |
<compilerarg value="-parameters"/> |
16147 | 180 |
</javac> |
40286
ba60b24b1308
8136930: Simplify use of module-system options by custom launchers
mchung
parents:
39789
diff
changeset
|
181 |
<!-- patch-module does not like module-info.class files! --> |
37829
cd05ec7e2b76
8155944: ant build/test of nashorn is broken with the latest jdk9-dev build
sundar
parents:
36693
diff
changeset
|
182 |
<delete> |
cd05ec7e2b76
8155944: ant build/test of nashorn is broken with the latest jdk9-dev build
sundar
parents:
36693
diff
changeset
|
183 |
<fileset dir="${build.classes.dir}" includes="**/module-info.class"/> |
cd05ec7e2b76
8155944: ant build/test of nashorn is broken with the latest jdk9-dev build
sundar
parents:
36693
diff
changeset
|
184 |
</delete> |
36517 | 185 |
<javac srcdir="${nashorn.module.src.dir}" |
186 |
destdir="${nashorn.module.classes.dir}" |
|
187 |
source="${javac.source}" |
|
188 |
target="${javac.target}" |
|
189 |
debug="${javac.debug}" |
|
190 |
encoding="${javac.encoding}" |
|
191 |
includeantruntime="false" fork="true"> |
|
192 |
<compilerarg value="-Xlint:all"/> |
|
193 |
<compilerarg value="-XDignore.symbol.file"/> |
|
194 |
<compilerarg value="-Xdiags:verbose"/> |
|
195 |
<compilerarg value="-parameters"/> |
|
37829
cd05ec7e2b76
8155944: ant build/test of nashorn is broken with the latest jdk9-dev build
sundar
parents:
36693
diff
changeset
|
196 |
<compilerarg line="${nashorn.override.option}"/> |
36517 | 197 |
</javac> |
40286
ba60b24b1308
8136930: Simplify use of module-system options by custom launchers
mchung
parents:
39789
diff
changeset
|
198 |
<!-- patch-module does not like module-info.class files! --> |
37829
cd05ec7e2b76
8155944: ant build/test of nashorn is broken with the latest jdk9-dev build
sundar
parents:
36693
diff
changeset
|
199 |
<delete> |
cd05ec7e2b76
8155944: ant build/test of nashorn is broken with the latest jdk9-dev build
sundar
parents:
36693
diff
changeset
|
200 |
<fileset dir="${build.classes.dir}" includes="**/module-info.class"/> |
cd05ec7e2b76
8155944: ant build/test of nashorn is broken with the latest jdk9-dev build
sundar
parents:
36693
diff
changeset
|
201 |
</delete> |
36517 | 202 |
<javac srcdir="${nashorn.shell.module.src.dir}" |
203 |
destdir="${nashorn.shell.module.classes.dir}" |
|
204 |
source="${javac.source}" |
|
205 |
target="${javac.target}" |
|
206 |
debug="${javac.debug}" |
|
207 |
encoding="${javac.encoding}" |
|
208 |
includeantruntime="false" fork="true"> |
|
209 |
<compilerarg value="-Xlint:all"/> |
|
210 |
<compilerarg value="-XDignore.symbol.file"/> |
|
211 |
<compilerarg value="-Xdiags:verbose"/> |
|
212 |
<compilerarg value="-parameters"/> |
|
37829
cd05ec7e2b76
8155944: ant build/test of nashorn is broken with the latest jdk9-dev build
sundar
parents:
36693
diff
changeset
|
213 |
<compilerarg line="${nashorn.override.option}"/> |
36517 | 214 |
</javac> |
40286
ba60b24b1308
8136930: Simplify use of module-system options by custom launchers
mchung
parents:
39789
diff
changeset
|
215 |
<!-- patch-module does not like module-info.class files! --> |
36517 | 216 |
<delete> |
217 |
<fileset dir="${build.classes.dir}" includes="**/module-info.class"/> |
|
218 |
</delete> |
|
219 |
<copy todir="${nashorn.module.classes.dir}/jdk/nashorn/api/scripting/resources"> |
|
32152
705d4af0d4d7
8133347: Add makefiles support and basic session, persistence history navigation with jline
sundar
parents:
31829
diff
changeset
|
220 |
<fileset dir="${nashorn.module.src.dir}/jdk/nashorn/api/scripting/resources/"/> |
16147 | 221 |
</copy> |
36517 | 222 |
<copy todir="${nashorn.module.classes.dir}/jdk/nashorn/internal/runtime/resources"> |
32152
705d4af0d4d7
8133347: Add makefiles support and basic session, persistence history navigation with jline
sundar
parents:
31829
diff
changeset
|
223 |
<fileset dir="${nashorn.module.src.dir}/jdk/nashorn/internal/runtime/resources/"/> |
16147 | 224 |
</copy> |
36517 | 225 |
<copy todir="${nashorn.module.classes.dir}/jdk/nashorn/tools/resources"> |
32152
705d4af0d4d7
8133347: Add makefiles support and basic session, persistence history navigation with jline
sundar
parents:
31829
diff
changeset
|
226 |
<fileset dir="${nashorn.module.src.dir}/jdk/nashorn/tools/resources/"/> |
16147 | 227 |
</copy> |
36517 | 228 |
<copy file="${dynalink.module.src.dir}/jdk/dynalink/support/messages.properties" todir="${dynalink.module.classes.dir}/jdk/dynalink/support"/> |
229 |
<copy file="${nashorn.module.src.dir}/jdk/nashorn/internal/codegen/anchor.properties" todir="${nashorn.module.classes.dir}/jdk/nashorn/internal/codegen"/> |
|
16234
86cb162cec6c
8008085: Integrate Dynalink source code into Nashorn codebase
attila
parents:
16231
diff
changeset
|
230 |
|
36517 | 231 |
<echo message="version_string=${nashorn.fullversion}" file="${nashorn.module.classes.dir}/jdk/nashorn/internal/runtime/resources/version.properties"/> |
232 |
<echo file="${nashorn.module.classes.dir}/jdk/nashorn/internal/runtime/resources/version.properties" append="true">${line.separator}</echo> |
|
233 |
<echo message="version_short=${nashorn.version}" file="${nashorn.module.classes.dir}/jdk/nashorn/internal/runtime/resources/version.properties" append="true"/> |
|
16147 | 234 |
</target> |
235 |
||
18630
48e3dc4bf0f6
8019580: Build Script Change for Nashorn promotion testing
jlaskey
parents:
17767
diff
changeset
|
236 |
<target name="jar" depends="compile, run-nasgen, generate-cc-template" description="Creates nashorn.jar" unless="compile.suppress.jar"> |
36517 | 237 |
<jar jarfile="${dynalink.jar}"> |
238 |
<fileset dir="${dynalink.module.classes.dir}"/> |
|
239 |
</jar> |
|
240 |
<jar jarfile="${nashorn.jar}" index="true" filesetmanifest="merge"> |
|
241 |
<fileset dir="${nashorn.module.classes.dir}"/> |
|
16147 | 242 |
<manifest> |
243 |
<attribute name="Archiver-Version" value="n/a"/> |
|
244 |
<attribute name="Build-Jdk" value="${java.runtime.version}"/> |
|
245 |
<attribute name="Built-By" value="n/a"/> |
|
246 |
<attribute name="Created-By" value="Ant jar task"/> |
|
247 |
<section name="jdk/nashorn/"> |
|
248 |
<attribute name="Implementation-Title" value="${nashorn.product.name}"/> |
|
249 |
<attribute name="Implementation-Version" value="${nashorn.version}"/> |
|
250 |
</section> |
|
251 |
</manifest> |
|
252 |
</jar> |
|
36517 | 253 |
<jar jarfile="${jjs.jar}"> |
254 |
<fileset dir="${nashorn.shell.module.classes.dir}"/> |
|
255 |
</jar> |
|
16147 | 256 |
</target> |
18630
48e3dc4bf0f6
8019580: Build Script Change for Nashorn promotion testing
jlaskey
parents:
17767
diff
changeset
|
257 |
|
48e3dc4bf0f6
8019580: Build Script Change for Nashorn promotion testing
jlaskey
parents:
17767
diff
changeset
|
258 |
<target name="use-promoted-nashorn" depends="init"> |
48e3dc4bf0f6
8019580: Build Script Change for Nashorn promotion testing
jlaskey
parents:
17767
diff
changeset
|
259 |
<delete file="${dist.dir}/nashorn.jar"/> |
48e3dc4bf0f6
8019580: Build Script Change for Nashorn promotion testing
jlaskey
parents:
17767
diff
changeset
|
260 |
<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
|
261 |
<property name="compile.suppress.jar" value="defined"/> |
48e3dc4bf0f6
8019580: Build Script Change for Nashorn promotion testing
jlaskey
parents:
17767
diff
changeset
|
262 |
</target> |
48e3dc4bf0f6
8019580: Build Script Change for Nashorn promotion testing
jlaskey
parents:
17767
diff
changeset
|
263 |
|
38807 | 264 |
<!-- generate javadoc for Nashorn 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
|
265 |
<target name="javadoc" depends="jar"> |
32891
687132a414b2
8138643: nashorn ant build.xml javadoc, javadocapi targets are broken and netbeans makefile does not include shell sources
sundar
parents:
32152
diff
changeset
|
266 |
<javadoc destdir="${dist.javadoc.dir}" use="yes" overview="${nashorn.module.src.dir}/overview.html" |
36517 | 267 |
windowtitle="${nashorn.product.name} ${nashorn.version}" |
31492 | 268 |
additionalparam="-quiet" failonerror="true" useexternalfile="true"> |
40286
ba60b24b1308
8136930: Simplify use of module-system options by custom launchers
mchung
parents:
39789
diff
changeset
|
269 |
<arg value="--module-source-path"/> |
38807 | 270 |
<arg value="${basedir}/src/*/share/classes"/> |
36141
696d662bcdb7
8148379: jdk.nashorn.api.scripting spec. adjustments, clarifications
sundar
parents:
35797
diff
changeset
|
271 |
<arg value="${javadoc.option}"/> |
31492 | 272 |
<classpath> |
273 |
<pathelement location="${build.classes.dir}"/> |
|
274 |
</classpath> |
|
34447
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
275 |
<fileset dir="${dynalink.module.src.dir}" includes="**/*.java"/> |
32152
705d4af0d4d7
8133347: Add makefiles support and basic session, persistence history navigation with jline
sundar
parents:
31829
diff
changeset
|
276 |
<fileset dir="${nashorn.module.src.dir}" includes="**/*.java"/> |
705d4af0d4d7
8133347: Add makefiles support and basic session, persistence history navigation with jline
sundar
parents:
31829
diff
changeset
|
277 |
<fileset dir="${nashorn.shell.module.src.dir}" includes="**/*.java"/> |
31492 | 278 |
<link href="http://docs.oracle.com/javase/8/docs/api/"/> |
279 |
</javadoc> |
|
280 |
</target> |
|
281 |
||
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
|
282 |
<!-- generate javadoc only for nashorn extension api classes --> |
38807 | 283 |
<target name="nashornapi" depends="jar"> |
284 |
<mkdir dir="${dist.nashornapi.javadoc.dir}"/> |
|
285 |
<javadoc destdir="${dist.nashornapi.javadoc.dir}" use="yes" overview="${nashorn.module.src.dir}/overview.html" |
|
31492 | 286 |
extdirs="${nashorn.ext.path}" windowtitle="${nashorn.product.name} ${nashorn.version}" |
287 |
additionalparam="-quiet" failonerror="true" useexternalfile="true"> |
|
40286
ba60b24b1308
8136930: Simplify use of module-system options by custom launchers
mchung
parents:
39789
diff
changeset
|
288 |
<arg value="--module-source-path"/> |
38807 | 289 |
<arg value="${basedir}/src/*/share/classes"/> |
36141
696d662bcdb7
8148379: jdk.nashorn.api.scripting spec. adjustments, clarifications
sundar
parents:
35797
diff
changeset
|
290 |
<arg value="${javadoc.option}"/> |
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
|
291 |
<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
|
292 |
<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
|
293 |
</classpath> |
32891
687132a414b2
8138643: nashorn ant build.xml javadoc, javadocapi targets are broken and netbeans makefile does not include shell sources
sundar
parents:
32152
diff
changeset
|
294 |
<fileset dir="${nashorn.module.src.dir}" includes="jdk/nashorn/api/**/*.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
|
295 |
<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
|
296 |
</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
|
297 |
</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
|
298 |
|
34447
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
299 |
<!-- generate javadoc only for Dynalink API classes --> |
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
300 |
<target name="dynalinkapi" depends="jar"> |
38807 | 301 |
<mkdir dir="${dist.dynalinkapi.javadoc.dir}"/> |
302 |
<javadoc destdir="${dist.dynalinkapi.javadoc.dir}" use="yes" |
|
34447
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
303 |
windowtitle="Dynalink" |
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
304 |
additionalparam="-quiet" failonerror="true" useexternalfile="true"> |
40286
ba60b24b1308
8136930: Simplify use of module-system options by custom launchers
mchung
parents:
39789
diff
changeset
|
305 |
<arg value="--module-source-path"/> |
38807 | 306 |
<arg value="${basedir}/src/*/share/classes"/> |
36141
696d662bcdb7
8148379: jdk.nashorn.api.scripting spec. adjustments, clarifications
sundar
parents:
35797
diff
changeset
|
307 |
<arg value="${javadoc.option}"/> |
34447
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
308 |
<classpath> |
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
309 |
<pathelement location="${build.classes.dir}"/> |
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
310 |
</classpath> |
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
311 |
<fileset dir="${dynalink.module.src.dir}" includes="**/*.java" excludes="jdk/dynalink/internal/*.java"/> |
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
312 |
<link href="http://docs.oracle.com/javase/8/docs/api/"/> |
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
313 |
</javadoc> |
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
314 |
</target> |
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
|
315 |
|
38807 | 316 |
<target name="javadocapi" depends="nashornapi, dynalinkapi"/> |
317 |
||
16147 | 318 |
<!-- generate shell.html for shell tool documentation --> |
319 |
<target name="shelldoc" depends="jar"> |
|
320 |
<java classname="${nashorn.shell.tool}" dir="${basedir}" output="${dist.dir}/shell.html" failonerror="true" fork="true"> |
|
36517 | 321 |
<jvmarg line="${nashorn.override.option}"/> |
16147 | 322 |
<arg value="-scripting"/> |
323 |
<arg value="docs/genshelldoc.js"/> |
|
324 |
</java> |
|
325 |
</target> |
|
326 |
||
327 |
<!-- generate all docs --> |
|
328 |
<target name="docs" depends="javadoc, shelldoc"/> |
|
329 |
||
330 |
<!-- create .zip and .tar.gz for nashorn binaries and scripts. --> |
|
331 |
<target name="dist" depends="jar"> |
|
332 |
<zip destfile="${build.zip}" basedir=".." |
|
333 |
excludes="nashorn/bin/*.sh" includes="nashorn/bin/** nashorn/dist/**"/> |
|
334 |
<tar destfile="${build.gzip}" basedir=".." compression="gzip" |
|
335 |
excludes="nashorn/bin/*.sh" includes="nashorn/bin/** nashorn/dist/**"/> |
|
336 |
</target> |
|
337 |
||
338 |
<target name="compile-test" depends="compile, run-nasgen" if="testng.available"> |
|
339 |
<!-- testng task --> |
|
340 |
<taskdef name="testng" classname="org.testng.TestNGAntTask" |
|
35797
148bb1cd62e5
8149744: fix testng.jar delivery in Nashorn build.xml
mhaupt
parents:
34738
diff
changeset
|
341 |
classpath="${testng.ant.classpath}"/> |
16147 | 342 |
|
343 |
<javac srcdir="${test.src.dir}" |
|
344 |
destdir="${build.test.classes.dir}" |
|
345 |
classpath="${javac.test.classpath}" |
|
346 |
source="${javac.source}" |
|
347 |
target="${javac.target}" |
|
348 |
debug="${javac.debug}" |
|
349 |
encoding="${javac.encoding}" |
|
18865
8844964e5fc5
8020325: static property does not work on accessible, public classes
sundar
parents:
18851
diff
changeset
|
350 |
includeantruntime="false" fork="true"> |
37829
cd05ec7e2b76
8155944: ant build/test of nashorn is broken with the latest jdk9-dev build
sundar
parents:
36693
diff
changeset
|
351 |
<compilerarg line="${nashorn.override.option}"/> |
18865
8844964e5fc5
8020325: static property does not work on accessible, public classes
sundar
parents:
18851
diff
changeset
|
352 |
<compilerarg value="-Xlint:unchecked"/> |
8844964e5fc5
8020325: static property does not work on accessible, public classes
sundar
parents:
18851
diff
changeset
|
353 |
<compilerarg value="-Xlint:deprecation"/> |
23375
a1110f2cbe75
8037400: Remove getInitialMap getters and GlobalObject interface
sundar
parents:
23372
diff
changeset
|
354 |
<compilerarg value="-Xdiags:verbose"/> |
37829
cd05ec7e2b76
8155944: ant build/test of nashorn is broken with the latest jdk9-dev build
sundar
parents:
36693
diff
changeset
|
355 |
<compilerarg line="${test.module.imports}"/> |
17757
892b9873e831
8014909: ant test compilation error with JoniTest.java
sundar
parents:
17753
diff
changeset
|
356 |
</javac> |
16221
38ac51eba133
8007715: Make sure that not all tests run with AllPermission
sundar
parents:
16170
diff
changeset
|
357 |
|
19895
965b12eb322e
8024619: JDBC java.sql.DriverManager is not usable from JS script
sundar
parents:
19894
diff
changeset
|
358 |
<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
|
359 |
<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
|
360 |
</copy> |
965b12eb322e
8024619: JDBC java.sql.DriverManager is not usable from JS script
sundar
parents:
19894
diff
changeset
|
361 |
|
29758
cb8621d74d60
8076646: nashorn tests should avoid using package names used by nashorn sources
sundar
parents:
29407
diff
changeset
|
362 |
<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
|
363 |
<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
|
364 |
</copy> |
f353da961684
8025629: load function should support a way to load scripts from classpath
sundar
parents:
20212
diff
changeset
|
365 |
|
33689
a42cdb474da0
8010803: Number to String conversion functionality overhaul
hannesw
parents:
32891
diff
changeset
|
366 |
<copy todir="${build.test.classes.dir}/jdk/nashorn/internal/runtime/doubleconv/test/resources"> |
a42cdb474da0
8010803: Number to String conversion functionality overhaul
hannesw
parents:
32891
diff
changeset
|
367 |
<fileset dir="${test.src.dir}/jdk/nashorn/internal/runtime/doubleconv/test/resources"/> |
a42cdb474da0
8010803: Number to String conversion functionality overhaul
hannesw
parents:
32891
diff
changeset
|
368 |
</copy> |
a42cdb474da0
8010803: Number to String conversion functionality overhaul
hannesw
parents:
32891
diff
changeset
|
369 |
|
29758
cb8621d74d60
8076646: nashorn tests should avoid using package names used by nashorn sources
sundar
parents:
29407
diff
changeset
|
370 |
<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
|
371 |
<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
|
372 |
</copy> |
09707b3e5fb0
8021350: Share script classes between threads/globals within context
hannesw
parents:
23075
diff
changeset
|
373 |
|
16221
38ac51eba133
8007715: Make sure that not all tests run with AllPermission
sundar
parents:
16170
diff
changeset
|
374 |
<!-- tests that check nashorn internals and internal API --> |
38ac51eba133
8007715: Make sure that not all tests run with AllPermission
sundar
parents:
16170
diff
changeset
|
375 |
<jar jarfile="${nashorn.internal.tests.jar}"> |
34447
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
376 |
<fileset dir="${build.test.classes.dir}" includes="**/internal/**"/> |
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
377 |
<fileset dir="${build.test.classes.dir}" includes="**/test/tools/**"/> |
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
378 |
<fileset dir="${build.test.classes.dir}" includes="**/models/**"/> |
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
379 |
<fileset dir="${build.test.classes.dir}" includes="**/jdk/dynalink/test/Trusted**"/> |
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
380 |
<fileset dir="${build.test.classes.dir}" includes="**/META-INF/**"/> |
16221
38ac51eba133
8007715: Make sure that not all tests run with AllPermission
sundar
parents:
16170
diff
changeset
|
381 |
</jar> |
38ac51eba133
8007715: Make sure that not all tests run with AllPermission
sundar
parents:
16170
diff
changeset
|
382 |
|
34447
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
383 |
<!-- tests that check nashorn script engine (jsr-223) API and dynalink API --> |
16221
38ac51eba133
8007715: Make sure that not all tests run with AllPermission
sundar
parents:
16170
diff
changeset
|
384 |
<jar jarfile="${nashorn.api.tests.jar}"> |
34447
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
385 |
<fileset dir="${build.test.classes.dir}" includes="**/jdk/dynalink/**" excludes="**/jdk/dynalink/test/Trusted**"/> |
16522 | 386 |
<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
|
387 |
<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
|
388 |
<fileset dir="${build.test.classes.dir}" includes="**/resources/*.js"/> |
34447
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
389 |
<fileset dir="${build.test.classes.dir}" includes="**/UnnamedPackage**"/> |
16221
38ac51eba133
8007715: Make sure that not all tests run with AllPermission
sundar
parents:
16170
diff
changeset
|
390 |
</jar> |
38ac51eba133
8007715: Make sure that not all tests run with AllPermission
sundar
parents:
16170
diff
changeset
|
391 |
|
16147 | 392 |
</target> |
393 |
||
16236
ca6274fb36fe
8007990: No access to interface methods on a restricted class
attila
parents:
16234
diff
changeset
|
394 |
<target name="generate-policy-file" depends="prepare"> |
18841
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
395 |
<echo file="${build.dir}/nashorn.policy"> |
16221
38ac51eba133
8007715: Make sure that not all tests run with AllPermission
sundar
parents:
16170
diff
changeset
|
396 |
|
36517 | 397 |
grant codeBase "file:/${basedir}/${dynalink.module.classes.dir}" { |
398 |
permission java.security.AllPermission; |
|
399 |
}; |
|
400 |
||
401 |
grant codeBase "file:/${basedir}/${nashorn.module.classes.dir}" { |
|
24384
aa4f755d97ec
8043132: Nashorn : all tests failed with java.security.AccessControlException
sundar
parents:
23764
diff
changeset
|
402 |
permission java.security.AllPermission; |
aa4f755d97ec
8043132: Nashorn : all tests failed with java.security.AccessControlException
sundar
parents:
23764
diff
changeset
|
403 |
}; |
aa4f755d97ec
8043132: Nashorn : all tests failed with java.security.AccessControlException
sundar
parents:
23764
diff
changeset
|
404 |
|
18841
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
405 |
grant codeBase "file:/${basedir}/${nashorn.internal.tests.jar}" { |
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
406 |
permission java.security.AllPermission; |
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
407 |
}; |
18630
48e3dc4bf0f6
8019580: Build Script Change for Nashorn promotion testing
jlaskey
parents:
17767
diff
changeset
|
408 |
|
29407 | 409 |
grant codeBase "file:/${basedir}/${nashorn.api.tests.jar}" { |
410 |
permission java.util.PropertyPermission "parserapitest.*", "read"; |
|
411 |
permission java.util.PropertyPermission "test.*", "read"; |
|
412 |
permission java.util.PropertyPermission "test262.*", "read"; |
|
413 |
permission java.io.FilePermission "${basedir}/test/-","read"; |
|
414 |
permission java.io.FilePermission "$${user.dir}", "read"; |
|
415 |
permission java.util.PropertyPermission "user.dir", "read"; |
|
416 |
}; |
|
417 |
||
18841
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
418 |
grant codeBase "file:/${basedir}/${file.reference.testng.jar}" { |
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
419 |
permission java.security.AllPermission; |
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
420 |
}; |
35797
148bb1cd62e5
8149744: fix testng.jar delivery in Nashorn build.xml
mhaupt
parents:
34738
diff
changeset
|
421 |
grant codeBase "file:/${basedir}/${file.reference.jcommander.jar}" { |
148bb1cd62e5
8149744: fix testng.jar delivery in Nashorn build.xml
mhaupt
parents:
34738
diff
changeset
|
422 |
permission java.security.AllPermission; |
148bb1cd62e5
8149744: fix testng.jar delivery in Nashorn build.xml
mhaupt
parents:
34738
diff
changeset
|
423 |
}; |
148bb1cd62e5
8149744: fix testng.jar delivery in Nashorn build.xml
mhaupt
parents:
34738
diff
changeset
|
424 |
grant codeBase "file:/${basedir}/${file.reference.bsh.jar}" { |
148bb1cd62e5
8149744: fix testng.jar delivery in Nashorn build.xml
mhaupt
parents:
34738
diff
changeset
|
425 |
permission java.security.AllPermission; |
148bb1cd62e5
8149744: fix testng.jar delivery in Nashorn build.xml
mhaupt
parents:
34738
diff
changeset
|
426 |
}; |
148bb1cd62e5
8149744: fix testng.jar delivery in Nashorn build.xml
mhaupt
parents:
34738
diff
changeset
|
427 |
grant codeBase "file:/${basedir}/${file.reference.snakeyaml.jar}" { |
148bb1cd62e5
8149744: fix testng.jar delivery in Nashorn build.xml
mhaupt
parents:
34738
diff
changeset
|
428 |
permission java.security.AllPermission; |
148bb1cd62e5
8149744: fix testng.jar delivery in Nashorn build.xml
mhaupt
parents:
34738
diff
changeset
|
429 |
}; |
25675
556f675a6a12
8051019: Separate src and test execution sandbox directories
sundar
parents:
25586
diff
changeset
|
430 |
//// in case of absolute path: |
556f675a6a12
8051019: Separate src and test execution sandbox directories
sundar
parents:
25586
diff
changeset
|
431 |
grant codeBase "file:/${nashorn.internal.tests.jar}" { |
556f675a6a12
8051019: Separate src and test execution sandbox directories
sundar
parents:
25586
diff
changeset
|
432 |
permission java.security.AllPermission; |
556f675a6a12
8051019: Separate src and test execution sandbox directories
sundar
parents:
25586
diff
changeset
|
433 |
}; |
556f675a6a12
8051019: Separate src and test execution sandbox directories
sundar
parents:
25586
diff
changeset
|
434 |
|
556f675a6a12
8051019: Separate src and test execution sandbox directories
sundar
parents:
25586
diff
changeset
|
435 |
grant codeBase "file:/${file.reference.testng.jar}" { |
556f675a6a12
8051019: Separate src and test execution sandbox directories
sundar
parents:
25586
diff
changeset
|
436 |
permission java.security.AllPermission; |
556f675a6a12
8051019: Separate src and test execution sandbox directories
sundar
parents:
25586
diff
changeset
|
437 |
}; |
35797
148bb1cd62e5
8149744: fix testng.jar delivery in Nashorn build.xml
mhaupt
parents:
34738
diff
changeset
|
438 |
grant codeBase "file:/${file.reference.jcommander.jar}" { |
148bb1cd62e5
8149744: fix testng.jar delivery in Nashorn build.xml
mhaupt
parents:
34738
diff
changeset
|
439 |
permission java.security.AllPermission; |
148bb1cd62e5
8149744: fix testng.jar delivery in Nashorn build.xml
mhaupt
parents:
34738
diff
changeset
|
440 |
}; |
148bb1cd62e5
8149744: fix testng.jar delivery in Nashorn build.xml
mhaupt
parents:
34738
diff
changeset
|
441 |
grant codeBase "file:/${file.reference.bsh.jar}" { |
148bb1cd62e5
8149744: fix testng.jar delivery in Nashorn build.xml
mhaupt
parents:
34738
diff
changeset
|
442 |
permission java.security.AllPermission; |
148bb1cd62e5
8149744: fix testng.jar delivery in Nashorn build.xml
mhaupt
parents:
34738
diff
changeset
|
443 |
}; |
148bb1cd62e5
8149744: fix testng.jar delivery in Nashorn build.xml
mhaupt
parents:
34738
diff
changeset
|
444 |
grant codeBase "file:/${file.reference.snakeyaml.jar}" { |
148bb1cd62e5
8149744: fix testng.jar delivery in Nashorn build.xml
mhaupt
parents:
34738
diff
changeset
|
445 |
permission java.security.AllPermission; |
148bb1cd62e5
8149744: fix testng.jar delivery in Nashorn build.xml
mhaupt
parents:
34738
diff
changeset
|
446 |
}; |
148bb1cd62e5
8149744: fix testng.jar delivery in Nashorn build.xml
mhaupt
parents:
34738
diff
changeset
|
447 |
|
16147 | 448 |
|
18841
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
449 |
grant codeBase "file:/${basedir}/test/script/trusted/*" { |
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
450 |
permission java.security.AllPermission; |
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
451 |
}; |
16147 | 452 |
|
23075
0e9484b12766
8033763: Add tests to assert map identity of certain objects
sundar
parents:
22371
diff
changeset
|
453 |
grant codeBase "file:/${basedir}/test/script/maptests/*" { |
0e9484b12766
8033763: Add tests to assert map identity of certain objects
sundar
parents:
22371
diff
changeset
|
454 |
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
|
455 |
permission java.lang.RuntimePermission "nashorn.debugMode"; |
0e9484b12766
8033763: Add tests to assert map identity of certain objects
sundar
parents:
22371
diff
changeset
|
456 |
}; |
0e9484b12766
8033763: Add tests to assert map identity of certain objects
sundar
parents:
22371
diff
changeset
|
457 |
|
18841
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
458 |
grant codeBase "file:/${basedir}/test/script/basic/*" { |
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
459 |
permission java.io.FilePermission "${basedir}/test/script/-", "read"; |
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
460 |
permission java.io.FilePermission "$${user.dir}", "read"; |
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
461 |
permission java.util.PropertyPermission "user.dir", "read"; |
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
462 |
permission java.util.PropertyPermission "nashorn.test.*", "read"; |
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
463 |
}; |
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
464 |
|
34738
6a2c8f68a2c2
8145669: apply2call optimized callsite fails after becoming megamorphic
sundar
parents:
34731
diff
changeset
|
465 |
grant codeBase "file:/${basedir}/test/script/basic/apply_to_call/*" { |
6a2c8f68a2c2
8145669: apply2call optimized callsite fails after becoming megamorphic
sundar
parents:
34731
diff
changeset
|
466 |
permission java.io.FilePermission "${basedir}/test/script/-", "read"; |
6a2c8f68a2c2
8145669: apply2call optimized callsite fails after becoming megamorphic
sundar
parents:
34731
diff
changeset
|
467 |
permission java.io.FilePermission "$${user.dir}", "read"; |
6a2c8f68a2c2
8145669: apply2call optimized callsite fails after becoming megamorphic
sundar
parents:
34731
diff
changeset
|
468 |
permission java.util.PropertyPermission "user.dir", "read"; |
6a2c8f68a2c2
8145669: apply2call optimized callsite fails after becoming megamorphic
sundar
parents:
34731
diff
changeset
|
469 |
permission java.util.PropertyPermission "nashorn.test.*", "read"; |
6a2c8f68a2c2
8145669: apply2call optimized callsite fails after becoming megamorphic
sundar
parents:
34731
diff
changeset
|
470 |
}; |
6a2c8f68a2c2
8145669: apply2call optimized callsite fails after becoming megamorphic
sundar
parents:
34731
diff
changeset
|
471 |
|
19894
195477810711
8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
19103
diff
changeset
|
472 |
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
|
473 |
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
|
474 |
permission java.io.FilePermission "$${user.dir}", "read"; |
195477810711
8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
19103
diff
changeset
|
475 |
permission java.util.PropertyPermission "user.dir", "read"; |
195477810711
8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
19103
diff
changeset
|
476 |
permission java.util.PropertyPermission "nashorn.test.*", "read"; |
195477810711
8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
19103
diff
changeset
|
477 |
}; |
195477810711
8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
19103
diff
changeset
|
478 |
|
26377
028dad61662f
8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
26239
diff
changeset
|
479 |
grant codeBase "file:/${basedir}/test/script/basic/es6/*" { |
028dad61662f
8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
26239
diff
changeset
|
480 |
permission java.io.FilePermission "${basedir}/test/script/-", "read"; |
028dad61662f
8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
26239
diff
changeset
|
481 |
permission java.io.FilePermission "$${user.dir}", "read"; |
028dad61662f
8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
26239
diff
changeset
|
482 |
permission java.util.PropertyPermission "user.dir", "read"; |
028dad61662f
8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
26239
diff
changeset
|
483 |
permission java.util.PropertyPermission "nashorn.test.*", "read"; |
028dad61662f
8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
26239
diff
changeset
|
484 |
}; |
028dad61662f
8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
26239
diff
changeset
|
485 |
|
18841
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
486 |
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
|
487 |
permission java.util.PropertyPermission "java.security.policy", "read"; |
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
488 |
}; |
19087
47d02733b128
8020820: Limit access to static members of reflective classes
attila
parents:
19082
diff
changeset
|
489 |
|
47d02733b128
8020820: Limit access to static members of reflective classes
attila
parents:
19082
diff
changeset
|
490 |
grant codeBase "file:/${basedir}/test/script/basic/classloader.js" { |
47d02733b128
8020820: Limit access to static members of reflective classes
attila
parents:
19082
diff
changeset
|
491 |
permission java.lang.RuntimePermission "nashorn.JavaReflection"; |
47d02733b128
8020820: Limit access to static members of reflective classes
attila
parents:
19082
diff
changeset
|
492 |
}; |
47d02733b128
8020820: Limit access to static members of reflective classes
attila
parents:
19082
diff
changeset
|
493 |
|
22371
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
494 |
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
|
495 |
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
|
496 |
}; |
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
497 |
|
38809
98a5507b1c86
8158467: AccessControlException is thrown on public Java class access if "script app loader" is set to null
sundar
parents:
38807
diff
changeset
|
498 |
grant codeBase "file:/${basedir}/test/script/basic/JDK-8158467.js" { |
98a5507b1c86
8158467: AccessControlException is thrown on public Java class access if "script app loader" is set to null
sundar
parents:
38807
diff
changeset
|
499 |
permission java.lang.RuntimePermission "nashorn.setConfig"; |
98a5507b1c86
8158467: AccessControlException is thrown on public Java class access if "script app loader" is set to null
sundar
parents:
38807
diff
changeset
|
500 |
}; |
98a5507b1c86
8158467: AccessControlException is thrown on public Java class access if "script app loader" is set to null
sundar
parents:
38807
diff
changeset
|
501 |
|
18841
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
502 |
</echo> |
16147 | 503 |
|
504 |
<replace file="${build.dir}/nashorn.policy"><replacetoken>\</replacetoken><replacevalue>/</replacevalue></replace> <!--hack for Windows - to make URLs with normal path separators --> |
|
505 |
<replace file="${build.dir}/nashorn.policy"><replacetoken>//</replacetoken><replacevalue>/</replacevalue></replace> <!--hack for Unix - to avoid leading // in URLs --> |
|
506 |
||
507 |
</target> |
|
508 |
||
509 |
<target name="check-external-tests"> |
|
510 |
<available file="${test.external.dir}/prototype" property="test-sys-prop.external.prototype"/> |
|
511 |
<available file="${test.external.dir}/sunspider" property="test-sys-prop.external.sunspider"/> |
|
512 |
<available file="${test.external.dir}/underscore" property="test-sys-prop.external.underscore"/> |
|
513 |
<available file="${test.external.dir}/octane" property="test-sys-prop.external.octane"/> |
|
514 |
<available file="${test.external.dir}/yui" property="test-sys-prop.external.yui"/> |
|
515 |
<available file="${test.external.dir}/jquery" property="test-sys-prop.external.jquery"/> |
|
516 |
<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
|
517 |
<available file="${test.external.dir}/showdown" property="test-sys-prop.external.markdown"/> |
16147 | 518 |
</target> |
519 |
||
520 |
<target name="check-testng" unless="testng.available"> |
|
35797
148bb1cd62e5
8149744: fix testng.jar delivery in Nashorn build.xml
mhaupt
parents:
34738
diff
changeset
|
521 |
<echo message="WARNING: TestNG not available, will not run tests. Please copy TestNG and dependency JARs to the ${test.lib} directory."/> |
16147 | 522 |
</target> |
523 |
||
24882 | 524 |
<!-- only to be invoked as dependency of "test" target --> |
525 |
<target name="-test-classes-all" depends="jar" unless="test.class"> |
|
526 |
<fileset id="test.classes" dir="${build.test.classes.dir}"> |
|
34447
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
527 |
<include name="**/dynalink/test/*Test.class"/> |
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
528 |
<include name="**/dynalink/beans/test/*Test.class"/> |
29832 | 529 |
<include name="**/api/javaaccess/test/*Test.class"/> |
530 |
<include name="**/api/scripting/test/*Test.class"/> |
|
531 |
<include name="**/api/tree/test/*Test.class"/> |
|
532 |
<include name="**/codegen/test/*Test.class"/> |
|
533 |
<include name="**/parser/test/*Test.class"/> |
|
534 |
<include name="**/runtime/test/*Test.class"/> |
|
535 |
<include name="**/runtime/regexp/test/*Test.class"/> |
|
536 |
<include name="**/runtime/regexp/joni/test/*Test.class"/> |
|
33689
a42cdb474da0
8010803: Number to String conversion functionality overhaul
hannesw
parents:
32891
diff
changeset
|
537 |
<include name="**/runtime/doubleconv/test/*Test.class"/> |
24882 | 538 |
<include name="**/framework/*Test.class"/> |
539 |
</fileset> |
|
540 |
</target> |
|
16147 | 541 |
|
24882 | 542 |
<!-- only to be invoked as dependency of "test" target --> |
543 |
<target name="-test-classes-single" depends="jar" if="test.class"> |
|
544 |
<fileset id="test.classes" dir="${build.test.classes.dir}"> |
|
545 |
<include name="${test.class}*"/> |
|
546 |
</fileset> |
|
547 |
</target> |
|
548 |
||
549 |
<!-- only to be invoked as dependency of "test" target --> |
|
550 |
<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
|
551 |
<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
|
552 |
<include name="**/framework/ScriptTest.class"/> |
601c81b4165d
8043443: Test framework changes to run script tests without security manager
sundar
parents:
24384
diff
changeset
|
553 |
</fileset> |
27101
b8fffc2f66a3
8060238: Reports for optimistic test run overwrite those for pessimistic run
attila
parents:
26982
diff
changeset
|
554 |
<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
|
555 |
verbose="${testng.verbose}" haltonfailure="true" useDefaultListeners="false" listeners="${testng.listeners}" workingDir="${basedir}"> |
25675
556f675a6a12
8051019: Separate src and test execution sandbox directories
sundar
parents:
25586
diff
changeset
|
556 |
<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
|
557 |
<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
|
558 |
<propertyset> |
601c81b4165d
8043443: Test framework changes to run script tests without security manager
sundar
parents:
24384
diff
changeset
|
559 |
<propertyref prefix="nashorn."/> |
601c81b4165d
8043443: Test framework changes to run script tests without security manager
sundar
parents:
24384
diff
changeset
|
560 |
</propertyset> |
601c81b4165d
8043443: Test framework changes to run script tests without security manager
sundar
parents:
24384
diff
changeset
|
561 |
<propertyset> |
601c81b4165d
8043443: Test framework changes to run script tests without security manager
sundar
parents:
24384
diff
changeset
|
562 |
<propertyref prefix="test-sys-prop-no-security."/> |
601c81b4165d
8043443: Test framework changes to run script tests without security manager
sundar
parents:
24384
diff
changeset
|
563 |
<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
|
564 |
</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
|
565 |
<sysproperty key="optimistic.override" value="${optimistic}"/> |
24586
601c81b4165d
8043443: Test framework changes to run script tests without security manager
sundar
parents:
24384
diff
changeset
|
566 |
<classpath> |
601c81b4165d
8043443: Test framework changes to run script tests without security manager
sundar
parents:
24384
diff
changeset
|
567 |
<pathelement path="${run.test.classpath}"/> |
601c81b4165d
8043443: Test framework changes to run script tests without security manager
sundar
parents:
24384
diff
changeset
|
568 |
</classpath> |
601c81b4165d
8043443: Test framework changes to run script tests without security manager
sundar
parents:
24384
diff
changeset
|
569 |
</testng> |
16147 | 570 |
</target> |
571 |
||
24882 | 572 |
<!-- only to be invoked as dependency of "test" target --> |
573 |
<target name="-test-security"> |
|
574 |
<delete dir="${build.dir}/nashorn_code_cache"/> |
|
575 |
<property name="debug.test.jvmargs" value=""/> |
|
27101
b8fffc2f66a3
8060238: Reports for optimistic test run overwrite those for pessimistic run
attila
parents:
26982
diff
changeset
|
576 |
<testng outputdir="${build.test.results.dir}/${testResultsSubDir}" classfilesetref="test.classes" |
29407 | 577 |
verbose="${testng.verbose}" haltonfailure="true" useDefaultListeners="false" listeners="${testng.listeners}" workingDir="${basedir}"> |
25675
556f675a6a12
8051019: Separate src and test execution sandbox directories
sundar
parents:
25586
diff
changeset
|
578 |
<jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx} ${run.test.jvmsecurityargs} -Dbuild.dir=${build.dir}"/> |
24882 | 579 |
<jvmarg line="${debug.test.jvmargs}"/> |
580 |
<propertyset> |
|
581 |
<propertyref prefix="nashorn."/> |
|
582 |
</propertyset> |
|
583 |
<propertyset> |
|
584 |
<propertyref prefix="test-sys-prop."/> |
|
585 |
<mapper from="test-sys-prop.*" to="*" type="glob"/> |
|
586 |
</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
|
587 |
<sysproperty key="optimistic.override" value="${optimistic}"/> |
24882 | 588 |
<sysproperty key="test.js.excludes.file" value="${exclude.list}"/> |
589 |
<classpath> |
|
590 |
<pathelement path="${run.test.classpath}"/> |
|
591 |
</classpath> |
|
592 |
</testng> |
|
593 |
</target> |
|
594 |
||
38807 | 595 |
<target name="test" depends="prepare, javadoc, 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
|
596 |
|
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
|
597 |
<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
|
598 |
<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
|
599 |
<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
|
600 |
<param name="optimistic" value="true"/> |
27101
b8fffc2f66a3
8060238: Reports for optimistic test run overwrite those for pessimistic run
attila
parents:
26982
diff
changeset
|
601 |
<param name="testResultsSubDir" value="optimistic"/> |
29407 | 602 |
</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
|
603 |
<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
|
604 |
<param name="optimistic" value="true"/> |
27101
b8fffc2f66a3
8060238: Reports for optimistic test run overwrite those for pessimistic run
attila
parents:
26982
diff
changeset
|
605 |
<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
|
606 |
</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
|
607 |
</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
|
608 |
|
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
|
609 |
<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
|
610 |
<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
|
611 |
<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
|
612 |
<param name="optimistic" value="false"/> |
27101
b8fffc2f66a3
8060238: Reports for optimistic test run overwrite those for pessimistic run
attila
parents:
26982
diff
changeset
|
613 |
<param name="testResultsSubDir" value="pessimistic"/> |
29407 | 614 |
</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
|
615 |
<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
|
616 |
<param name="optimistic" value="false"/> |
27101
b8fffc2f66a3
8060238: Reports for optimistic test run overwrite those for pessimistic run
attila
parents:
26982
diff
changeset
|
617 |
<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
|
618 |
</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
|
619 |
</target> |
24882 | 620 |
|
21443
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
621 |
<target name="check-jemmy.jfx.testng" unless="jemmy.jfx.testng.available"> |
35797
148bb1cd62e5
8149744: fix testng.jar delivery in Nashorn build.xml
mhaupt
parents:
34738
diff
changeset
|
622 |
<echo message="WARNING: Jemmy or JavaFX or TestNG not available, will not run tests. Please copy TestNG and dependency JARs, JemmyCore.jar, JemmyFX.jar, JemmyAWTInput.jar to the test${file.separator}lib directory. And make sure you have jfxrt.jar in ${java.home}${file.separator}lib${file.separator}ext dir."/> |
21443
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
623 |
</target> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
624 |
|
31829
fa5c0e50b2cf
8131142: late-bind check for testng.jar presence in Nashorn test execution
mhaupt
parents:
31492
diff
changeset
|
625 |
<target name="testjfx" depends="jar, 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
|
626 |
<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
|
627 |
<include name="**/framework/*Test.class"/> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
628 |
</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
|
629 |
|
21443
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
630 |
<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
|
631 |
|
21690
ffbb4611d1f4
8027708: NASHORN TEST: Create Nashorn test that draws image step-by-step using JavaFX canvas.
kshefov
parents:
21443
diff
changeset
|
632 |
<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
|
633 |
<not> |
21690
ffbb4611d1f4
8027708: NASHORN TEST: Create Nashorn test that draws image step-by-step using JavaFX canvas.
kshefov
parents:
21443
diff
changeset
|
634 |
<os family="mac"/> |
ffbb4611d1f4
8027708: NASHORN TEST: Create Nashorn test that draws image step-by-step using JavaFX canvas.
kshefov
parents:
21443
diff
changeset
|
635 |
</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
|
636 |
</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
|
637 |
|
21443
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
638 |
<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
|
639 |
verbose="${testng.verbose}" haltonfailure="true" useDefaultListeners="false" listeners="${testng.listeners}" workingDir="${basedir}"> |
25675
556f675a6a12
8051019: Separate src and test execution sandbox directories
sundar
parents:
25586
diff
changeset
|
640 |
<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
|
641 |
<propertyset> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
642 |
<propertyref prefix="testjfx-test-sys-prop."/> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
643 |
<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
|
644 |
</propertyset> |
21690
ffbb4611d1f4
8027708: NASHORN TEST: Create Nashorn test that draws image step-by-step using JavaFX canvas.
kshefov
parents:
21443
diff
changeset
|
645 |
<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
|
646 |
<classpath> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
647 |
<pathelement path="${testjfx.run.test.classpath}"/> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
648 |
</classpath> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
649 |
</testng> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
650 |
</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
|
651 |
|
31829
fa5c0e50b2cf
8131142: late-bind check for testng.jar presence in Nashorn test execution
mhaupt
parents:
31492
diff
changeset
|
652 |
<target name="testmarkdown" depends="jar, 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
|
653 |
<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
|
654 |
<include name="**/framework/*Test.class"/> |
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
655 |
</fileset> |
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
656 |
|
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
657 |
<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
|
658 |
verbose="${testng.verbose}" haltonfailure="true" useDefaultListeners="false" listeners="${testng.listeners}" workingDir="${basedir}"> |
25675
556f675a6a12
8051019: Separate src and test execution sandbox directories
sundar
parents:
25586
diff
changeset
|
659 |
<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
|
660 |
<propertyset> |
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
661 |
<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
|
662 |
<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
|
663 |
</propertyset> |
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
664 |
<classpath> |
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
665 |
<pathelement path="${run.test.classpath}"/> |
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
666 |
</classpath> |
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
667 |
</testng> |
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
668 |
</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
|
669 |
|
31829
fa5c0e50b2cf
8131142: late-bind check for testng.jar presence in Nashorn test execution
mhaupt
parents:
31492
diff
changeset
|
670 |
<target name="test262" depends="jar, check-testng, check-external-tests, compile-test, generate-policy-file" if="testng.available"> |
16147 | 671 |
<fileset id="test.classes" dir="${build.test.classes.dir}"> |
672 |
<include name="**/framework/*Test.class"/> |
|
673 |
</fileset> |
|
674 |
||
675 |
<testng outputdir="${build.test.results.dir}" classfilesetref="test.classes" |
|
676 |
verbose="${testng.verbose}" haltonfailure="true" useDefaultListeners="false" listeners="${testng.listeners}" workingDir="${basedir}"> |
|
25675
556f675a6a12
8051019: Separate src and test execution sandbox directories
sundar
parents:
25586
diff
changeset
|
677 |
<jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx} ${run.test.jvmsecurityargs} -Dbuild.dir=${build.dir}"/> |
16147 | 678 |
<propertyset> |
22366
1db7c8634626
8029090: Developers should be able to pass nashorn properties and enable/disable JFR from command line
sundar
parents:
20564
diff
changeset
|
679 |
<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
|
680 |
</propertyset> |
1db7c8634626
8029090: Developers should be able to pass nashorn properties and enable/disable JFR from command line
sundar
parents:
20564
diff
changeset
|
681 |
<propertyset> |
16147 | 682 |
<propertyref prefix="test262-test-sys-prop."/> |
683 |
<mapper from="test262-test-sys-prop.*" to="*" type="glob"/> |
|
684 |
</propertyset> |
|
685 |
<classpath> |
|
686 |
<pathelement path="${run.test.classpath}"/> |
|
687 |
</classpath> |
|
688 |
</testng> |
|
689 |
</target> |
|
690 |
||
691 |
<target name="test262parallel" depends="test262-parallel"/> |
|
692 |
||
31829
fa5c0e50b2cf
8131142: late-bind check for testng.jar presence in Nashorn test execution
mhaupt
parents:
31492
diff
changeset
|
693 |
<target name="test262-parallel" depends="jar, check-testng, check-external-tests, compile-test, generate-policy-file" if="testng.available"> |
16147 | 694 |
<!-- use just build.test.classes.dir to avoid referring to TestNG --> |
34449
d4f99108d903
8144051: failing test262parallel run leads to successful build
sundar
parents:
34447
diff
changeset
|
695 |
<java classname="${parallel.test.runner}" dir="${basedir}" fork="true" failonerror="true"> |
25675
556f675a6a12
8051019: Separate src and test execution sandbox directories
sundar
parents:
25586
diff
changeset
|
696 |
<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
|
697 |
<!-- 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
|
698 |
<jvmarg line="-Dnashorn.typeInfo.disabled=true"/> |
16231
9c8790061bee
8008193: test262 tests should be run with security manager enabled
sundar
parents:
16226
diff
changeset
|
699 |
<classpath> |
9c8790061bee
8008193: test262 tests should be run with security manager enabled
sundar
parents:
16226
diff
changeset
|
700 |
<pathelement path="${run.test.classpath}"/> |
9c8790061bee
8008193: test262 tests should be run with security manager enabled
sundar
parents:
16226
diff
changeset
|
701 |
</classpath> |
16147 | 702 |
<syspropertyset> |
703 |
<propertyref prefix="test262-test-sys-prop."/> |
|
704 |
<mapper type="glob" from="test262-test-sys-prop.*" to="*"/> |
|
705 |
</syspropertyset> |
|
706 |
</java> |
|
707 |
</target> |
|
708 |
||
24719 | 709 |
<target name="testparallel" depends="test-parallel"/> |
710 |
||
31829
fa5c0e50b2cf
8131142: late-bind check for testng.jar presence in Nashorn test execution
mhaupt
parents:
31492
diff
changeset
|
711 |
<target name="test-parallel" depends="jar, check-testng, check-external-tests, compile-test, generate-policy-file" if="testng.available"> |
24719 | 712 |
<!-- use just build.test.classes.dir to avoid referring to TestNG --> |
713 |
<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
|
714 |
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
|
715 |
fork="true"> |
24719 | 716 |
<jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx} ${run.test.jvmsecurityargs}"/> |
717 |
<classpath> |
|
718 |
<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
|
719 |
<pathelement path="${build.test.classes.dir}"/> |
24719 | 720 |
</classpath> |
721 |
<syspropertyset> |
|
722 |
<propertyref prefix="test-sys-prop."/> |
|
723 |
<mapper type="glob" from="test-sys-prop.*" to="*"/> |
|
724 |
</syspropertyset> |
|
725 |
</java> |
|
726 |
</target> |
|
727 |
||
16147 | 728 |
<target name="all" depends="test, docs" |
729 |
description="Build, test and generate docs for nashorn"/> |
|
730 |
||
731 |
<target name="run" depends="jar" |
|
732 |
description="Run the shell with a sample script"> |
|
733 |
<java classname="${nashorn.shell.tool}" fork="true" dir="samples"> |
|
20212
5e7711039ab0
8023154: compileAllTests fails with: 2 tests failed to compile
hannesw
parents:
19895
diff
changeset
|
734 |
<jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx}"/> |
16147 | 735 |
<arg value="-dump-on-error"/> |
736 |
<arg value="test.js"/> |
|
737 |
</java> |
|
738 |
</target> |
|
739 |
||
740 |
<target name="debug" depends="jar" |
|
741 |
description="Debug the shell with a sample script"> |
|
742 |
<java classname="${nashorn.shell.tool}" fork="true" dir="samples"> |
|
20212
5e7711039ab0
8023154: compileAllTests fails with: 2 tests failed to compile
hannesw
parents:
19895
diff
changeset
|
743 |
<jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx}"/> |
16147 | 744 |
<arg value="--print-code"/> |
745 |
<arg value="--verify-code"/> |
|
746 |
<arg value="--print-symbols"/> |
|
747 |
<jvmarg value="-Dnashorn.codegen.debug=true"/> |
|
748 |
<arg value="test.js"/> |
|
749 |
</java> |
|
750 |
</target> |
|
16163
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
751 |
|
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
752 |
<!-- targets to get external script tests --> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
753 |
|
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
754 |
<!-- test262 test suite --> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
755 |
<target name="get-test262" depends="init" unless="${test-sys-prop.external.test262}"> |
23764 | 756 |
<!-- clone test262 git repo --> |
757 |
<exec executable="${git.executable}"> |
|
16163
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
758 |
<arg value="clone"/> |
26054
3d9f96f3d540
8051346: Test262 tests for ECMAScript 5 now in branch "es5-tests"
sundar
parents:
25675
diff
changeset
|
759 |
<arg value="--branch"/> |
3d9f96f3d540
8051346: Test262 tests for ECMAScript 5 now in branch "es5-tests"
sundar
parents:
25675
diff
changeset
|
760 |
<arg value="es5-tests"/> |
23764 | 761 |
<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
|
762 |
<arg value="${test.external.dir}/test262"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
763 |
</exec> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
764 |
</target> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
765 |
<target name="update-test262" depends="init" if="${test-sys-prop.external.test262}"> |
23764 | 766 |
<!-- update test262 git repo --> |
767 |
<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
|
768 |
<arg value="pull"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
769 |
</exec> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
770 |
</target> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
771 |
|
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
772 |
<!-- octane benchmark --> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
773 |
<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
|
774 |
<!-- checkout octane benchmarks --> |
38489 | 775 |
<exec executable="${git.executable}"> |
776 |
<arg value="clone"/> |
|
777 |
<arg value="https://github.com/chromium/octane"/> |
|
16163
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
778 |
<arg value="${test.external.dir}/octane"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
779 |
</exec> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
780 |
</target> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
781 |
<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
|
782 |
<!-- update octane benchmarks --> |
38489 | 783 |
<exec executable="${git.executable}" dir="${test.external.dir}/octane"> |
784 |
<arg value="pull"/> |
|
16163
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
785 |
</exec> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
786 |
</target> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
787 |
|
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
788 |
<!-- sunspider benchmark --> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
789 |
<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
|
790 |
<!-- checkout sunspider --> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
791 |
<exec executable="${svn.executable}"> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
792 |
<arg value="--non-interactive"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
793 |
<arg value="--trust-server-cert"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
794 |
<arg value="checkout"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
795 |
<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
|
796 |
<arg value="${test.external.dir}/sunspider"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
797 |
</exec> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
798 |
</target> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
799 |
<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
|
800 |
<!-- update sunspider --> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
801 |
<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
|
802 |
<arg value="--non-interactive"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
803 |
<arg value="--trust-server-cert"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
804 |
<arg value="update"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
805 |
</exec> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
806 |
</target> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
807 |
|
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
808 |
<!-- get all external test scripts --> |
31829
fa5c0e50b2cf
8131142: late-bind check for testng.jar presence in Nashorn test execution
mhaupt
parents:
31492
diff
changeset
|
809 |
<target name="externals" depends="init, check-external-tests, get-test262, get-octane, get-sunspider"> |
16163
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
810 |
<!-- make external test dir --> |
18630
48e3dc4bf0f6
8019580: Build Script Change for Nashorn promotion testing
jlaskey
parents:
17767
diff
changeset
|
811 |
<mkdir dir="${test.external.dir}"/> |
16163
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
812 |
|
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
813 |
<!-- jquery --> |
18630
48e3dc4bf0f6
8019580: Build Script Change for Nashorn promotion testing
jlaskey
parents:
17767
diff
changeset
|
814 |
<mkdir dir="${test.external.dir}/jquery"/> |
16163
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
815 |
<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
|
816 |
<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
|
817 |
|
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
818 |
<!-- prototype --> |
18630
48e3dc4bf0f6
8019580: Build Script Change for Nashorn promotion testing
jlaskey
parents:
17767
diff
changeset
|
819 |
<mkdir dir="${test.external.dir}/prototype"/> |
16163
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
820 |
<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
|
821 |
|
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
822 |
<!-- underscorejs --> |
18630
48e3dc4bf0f6
8019580: Build Script Change for Nashorn promotion testing
jlaskey
parents:
17767
diff
changeset
|
823 |
<mkdir dir="${test.external.dir}/underscore"/> |
16163
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
824 |
<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
|
825 |
<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
|
826 |
|
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
827 |
<!-- yui --> |
18630
48e3dc4bf0f6
8019580: Build Script Change for Nashorn promotion testing
jlaskey
parents:
17767
diff
changeset
|
828 |
<mkdir dir="${test.external.dir}/yui"/> |
16163
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
829 |
<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
|
830 |
<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
|
831 |
|
22371
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
832 |
<!-- showdown --> |
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
833 |
<mkdir dir="${test.external.dir}/showdown"/> |
30980 | 834 |
<get src="https://raw.githubusercontent.com/showdownjs/showdown/0.5.4/src/showdown.js" dest="${test.external.dir}/showdown" skipexisting="true" ignoreerrors="true"/> |
835 |
<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
|
836 |
|
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
837 |
</target> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
838 |
|
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
839 |
<!-- 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
|
840 |
<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
|
841 |
|
9e3f4e0b519b
8006093: Add a makefile target to run all tests (test, test262, perf tests)
sundar
parents:
16163
diff
changeset
|
842 |
<!-- run all perf tests --> |
9e3f4e0b519b
8006093: Add a makefile target to run all tests (test, test262, perf tests)
sundar
parents:
16163
diff
changeset
|
843 |
<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
|
844 |
|
30981
7ef4e72901cf
8080275: transparently download testng.jar for Nashorn testing
mhaupt
parents:
30980
diff
changeset
|
845 |
<!-- download and install testng.jar --> |
35797
148bb1cd62e5
8149744: fix testng.jar delivery in Nashorn build.xml
mhaupt
parents:
34738
diff
changeset
|
846 |
<target name="get-testng"> |
148bb1cd62e5
8149744: fix testng.jar delivery in Nashorn build.xml
mhaupt
parents:
34738
diff
changeset
|
847 |
<get dest="${test.lib}" skipexisting="true"> |
148bb1cd62e5
8149744: fix testng.jar delivery in Nashorn build.xml
mhaupt
parents:
34738
diff
changeset
|
848 |
<url url="http://central.maven.org/maven2/org/testng/testng/6.8/testng-6.8.jar"/> |
148bb1cd62e5
8149744: fix testng.jar delivery in Nashorn build.xml
mhaupt
parents:
34738
diff
changeset
|
849 |
<url url="http://central.maven.org/maven2/com/beust/jcommander/1.27/jcommander-1.27.jar"/> |
148bb1cd62e5
8149744: fix testng.jar delivery in Nashorn build.xml
mhaupt
parents:
34738
diff
changeset
|
850 |
<url url="http://central.maven.org/maven2/org/beanshell/bsh/2.0b4/bsh-2.0b4.jar"/> |
148bb1cd62e5
8149744: fix testng.jar delivery in Nashorn build.xml
mhaupt
parents:
34738
diff
changeset
|
851 |
<url url="http://central.maven.org/maven2/org/yaml/snakeyaml/1.6/snakeyaml-1.6.jar"/> |
148bb1cd62e5
8149744: fix testng.jar delivery in Nashorn build.xml
mhaupt
parents:
34738
diff
changeset
|
852 |
</get> |
30981
7ef4e72901cf
8080275: transparently download testng.jar for Nashorn testing
mhaupt
parents:
30980
diff
changeset
|
853 |
</target> |
7ef4e72901cf
8080275: transparently download testng.jar for Nashorn testing
mhaupt
parents:
30980
diff
changeset
|
854 |
|
34447
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
855 |
<!-- download and install asmtools.jar --> |
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
856 |
<target name="get-asmtools" unless="asmtools.already.present"> |
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
857 |
<get src="https://adopt-openjdk.ci.cloudbees.com/view/OpenJDK/job/asmtools/lastSuccessfulBuild/artifact/asmtools-6.0.tar.gz" dest="${test.lib}" skipexisting="true" ignoreerrors="true"/> |
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
858 |
<untar src="${test.lib}${file.separator}asmtools-6.0.tar.gz" dest="${test.lib}" compression="gzip"/> |
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
859 |
<!-- they are tar.gz'ing a .zip file! --> |
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
860 |
<unzip src="${test.lib}${file.separator}asmtools-6.0.zip" dest="${test.lib}"> |
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
861 |
<patternset> |
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
862 |
<include name="asmtools-6.0/lib/asmtools.jar"/> |
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
863 |
</patternset> |
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
864 |
</unzip> |
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
865 |
<move file="${test.lib}${file.separator}asmtools-6.0${file.separator}lib${file.separator}asmtools.jar" tofile="${test.lib}${file.separator}asmtools.jar"/> |
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
866 |
<delete dir="${test.lib}${file.separator}asmtools-6.0"/> |
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
867 |
</target> |
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33689
diff
changeset
|
868 |
|
30982
7c36fab40d4a
8081696: reduce dependency of Nashorn tests on external components
mhaupt
parents:
30981
diff
changeset
|
869 |
<!-- run all tests --> |
31829
fa5c0e50b2cf
8131142: late-bind check for testng.jar presence in Nashorn test execution
mhaupt
parents:
31492
diff
changeset
|
870 |
<target name="alltests" depends="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
|
871 |
|
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
|
872 |
<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
|
873 |
|
16147 | 874 |
</project> |