author | juh |
Wed, 27 Nov 2013 15:25:36 -0800 | |
changeset 21943 | 0fdb9441797f |
parent 21690 | ffbb4611d1f4 |
child 22367 | 8c17b1979d29 |
permissions | -rw-r--r-- |
16147 | 1 |
<?xml version="1.0" encoding="UTF-8"?> |
2 |
<!-- |
|
16151 | 3 |
Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved. |
16147 | 4 |
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
5 |
||
6 |
This code is free software; you can redistribute it and/or modify it |
|
7 |
under the terms of the GNU General Public License version 2 only, as |
|
8 |
published by the Free Software Foundation. |
|
9 |
||
10 |
This code is distributed in the hope that it will be useful, but WITHOUT |
|
11 |
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
12 |
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
13 |
version 2 for more details (a copy is included in the LICENSE file that |
|
14 |
accompanied this code). |
|
15 |
||
16 |
You should have received a copy of the GNU General Public License version |
|
17 |
2 along with this work; if not, write to the Free Software Foundation, |
|
18 |
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
19 |
||
20 |
Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
21 |
or visit www.oracle.com if you need additional information or have any |
|
22 |
questions. |
|
23 |
--> |
|
16270
17f612656e6b
8009229: ant makefile default target should be "test"
sundar
parents:
16263
diff
changeset
|
24 |
<project name="nashorn" default="test" basedir=".."> |
16147 | 25 |
<import file="build-nasgen.xml"/> |
26 |
<import file="build-benchmark.xml"/> |
|
16255 | 27 |
<import file="code_coverage.xml"/> |
16147 | 28 |
|
16255 | 29 |
|
30 |
<target name="init-conditions"> |
|
31 |
<!-- loading locally defined resources and properties. NB they owerwrite default ones defined later --> |
|
32 |
<property file="${user.home}/.nashorn.project.local.properties"/> |
|
33 |
||
16147 | 34 |
<loadproperties srcFile="make/project.properties"/> |
35 |
<path id="nashorn.ext.path"> |
|
36 |
<pathelement location="${dist.dir}"/> |
|
37 |
</path> |
|
38 |
<property name="ext.class.path" value="-Djava.ext.dirs="${toString:nashorn.ext.path}""/> |
|
16163
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
39 |
<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
|
40 |
<available file="/usr/local/bin/svn"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
41 |
</condition> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
42 |
<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
|
43 |
<available file="/usr/local/bin/hg"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
44 |
</condition> |
17767 | 45 |
<!-- check if JDK already has ASM classes --> |
46 |
<available property="asm.available" classname="jdk.internal.org.objectweb.asm.Type"/> |
|
16170
9e3f4e0b519b
8006093: Add a makefile target to run all tests (test, test262, perf tests)
sundar
parents:
16163
diff
changeset
|
47 |
<!-- check if testng.jar is avaiable --> |
9e3f4e0b519b
8006093: Add a makefile target to run all tests (test, test262, perf tests)
sundar
parents:
16163
diff
changeset
|
48 |
<available property="testng.available" file="${file.reference.testng.jar}"/> |
21443
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
49 |
<!-- check if Jemmy ang testng.jar are avaiable --> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
50 |
<condition property="jemmy.jfx.testng.available" value="true"> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
51 |
<and> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
52 |
<available file="${file.reference.jemmyfx.jar}"/> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
53 |
<available file="${file.reference.jemmycore.jar}"/> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
54 |
<available file="${file.reference.jemmyawtinput.jar}"/> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
55 |
<available file="${file.reference.jfxrt.jar}"/> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
56 |
<isset property="testng.available"/> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
57 |
</and> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
58 |
</condition> |
16255 | 59 |
|
19103
3905e242e69c
8020719: Run tests with reduced splitter threshold
hannesw
parents:
19087
diff
changeset
|
60 |
<!-- enable/disable make code coverage --> |
3905e242e69c
8020719: Run tests with reduced splitter threshold
hannesw
parents:
19087
diff
changeset
|
61 |
<condition property="cc.enabled"> |
3905e242e69c
8020719: Run tests with reduced splitter threshold
hannesw
parents:
19087
diff
changeset
|
62 |
<istrue value="${make.code.coverage}" /> |
3905e242e69c
8020719: Run tests with reduced splitter threshold
hannesw
parents:
19087
diff
changeset
|
63 |
</condition> |
19082
6926097854f6
8017585: Exclude two failing tests from Nashorn CC run
jlaskey
parents:
18865
diff
changeset
|
64 |
|
6926097854f6
8017585: Exclude two failing tests from Nashorn CC run
jlaskey
parents:
18865
diff
changeset
|
65 |
<!-- exclude tests in exclude lists --> |
6926097854f6
8017585: Exclude two failing tests from Nashorn CC run
jlaskey
parents:
18865
diff
changeset
|
66 |
<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
|
67 |
<istrue value="${make.code.coverage}" /> |
6926097854f6
8017585: Exclude two failing tests from Nashorn CC run
jlaskey
parents:
18865
diff
changeset
|
68 |
</condition> |
16255 | 69 |
</target> |
70 |
||
71 |
<target name="init" depends="init-conditions, init-cc"> |
|
72 |
||
19103
3905e242e69c
8020719: Run tests with reduced splitter threshold
hannesw
parents:
19087
diff
changeset
|
73 |
<!-- extends jvm args --> |
3905e242e69c
8020719: Run tests with reduced splitter threshold
hannesw
parents:
19087
diff
changeset
|
74 |
<property name="run.test.jvmargs" value="${run.test.jvmargs.main} ${run.test.cc.jvmargs}"/> |
3905e242e69c
8020719: Run tests with reduced splitter threshold
hannesw
parents:
19087
diff
changeset
|
75 |
<property name="run.test.jvmargs.octane" value="${run.test.jvmargs.octane.main} ${run.test.cc.jvmargs}" /> |
16255 | 76 |
|
77 |
<echo message="run.test.jvmargs=${run.test.jvmargs}"/> |
|
78 |
<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
|
79 |
<echo message="run.test.xms=${run.test.xms}"/> |
5e7711039ab0
8023154: compileAllTests fails with: 2 tests failed to compile
hannesw
parents:
19895
diff
changeset
|
80 |
<echo message="run.test.xmx=${run.test.xmx}"/> |
16255 | 81 |
|
16147 | 82 |
</target> |
83 |
||
84 |
<target name="prepare" depends="init"> |
|
85 |
<mkdir dir="${build.dir}"/> |
|
86 |
<mkdir dir="${build.classes.dir}"/> |
|
87 |
<mkdir dir="${build.classes.dir}/META-INF/services"/> |
|
88 |
<mkdir dir="${build.test.classes.dir}"/> |
|
89 |
<mkdir dir="${dist.dir}"/> |
|
90 |
<mkdir dir="${dist.javadoc.dir}"/> |
|
91 |
</target> |
|
92 |
||
16255 | 93 |
<target name="clean" depends="init, clean-nasgen, init-cc-cleanup"> |
16147 | 94 |
<delete includeemptydirs="true"> |
16234
86cb162cec6c
8008085: Integrate Dynalink source code into Nashorn codebase
attila
parents:
16231
diff
changeset
|
95 |
<fileset dir="${build.dir}" erroronmissingdir="false"/> |
16147 | 96 |
</delete> |
97 |
<delete dir="${dist.dir}"/> |
|
98 |
</target> |
|
99 |
||
17767 | 100 |
<!-- do it only if ASM is not available --> |
101 |
<target name="compile-asm" depends="prepare" unless="asm.available"> |
|
102 |
<javac srcdir="${jdk.asm.src.dir}" |
|
103 |
destdir="${build.classes.dir}" |
|
104 |
excludes="**/optimizer/* **/xml/* **/attrs/*" |
|
105 |
source="${javac.source}" |
|
106 |
target="${javac.target}" |
|
107 |
debug="${javac.debug}" |
|
108 |
encoding="${javac.encoding}" |
|
109 |
includeantruntime="false"/> |
|
110 |
</target> |
|
111 |
||
112 |
<target name="compile" depends="compile-asm" description="Compiles nashorn"> |
|
16147 | 113 |
<javac srcdir="${src.dir}" |
114 |
destdir="${build.classes.dir}" |
|
115 |
classpath="${javac.classpath}" |
|
116 |
source="${javac.source}" |
|
117 |
target="${javac.target}" |
|
118 |
debug="${javac.debug}" |
|
119 |
encoding="${javac.encoding}" |
|
18851
bdb92c95f886
8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
18841
diff
changeset
|
120 |
includeantruntime="false" fork="true"> |
bdb92c95f886
8019947: inherited property invalidation does not work with two globals in same context
sundar
parents:
18841
diff
changeset
|
121 |
<compilerarg value="-J-Djava.ext.dirs="/> |
16147 | 122 |
<compilerarg value="-Xlint:unchecked"/> |
123 |
<compilerarg value="-Xlint:deprecation"/> |
|
124 |
<compilerarg value="-XDignore.symbol.file"/> |
|
125 |
</javac> |
|
126 |
<copy todir="${build.classes.dir}/META-INF/services"> |
|
127 |
<fileset dir="${meta.inf.dir}/services/"/> |
|
128 |
</copy> |
|
129 |
<copy todir="${build.classes.dir}/jdk/nashorn/api/scripting/resources"> |
|
130 |
<fileset dir="${src.dir}/jdk/nashorn/api/scripting/resources/"/> |
|
131 |
</copy> |
|
132 |
<copy todir="${build.classes.dir}/jdk/nashorn/internal/runtime/resources"> |
|
133 |
<fileset dir="${src.dir}/jdk/nashorn/internal/runtime/resources/"/> |
|
134 |
</copy> |
|
135 |
<copy todir="${build.classes.dir}/jdk/nashorn/tools/resources"> |
|
136 |
<fileset dir="${src.dir}/jdk/nashorn/tools/resources/"/> |
|
137 |
</copy> |
|
16234
86cb162cec6c
8008085: Integrate Dynalink source code into Nashorn codebase
attila
parents:
16231
diff
changeset
|
138 |
<copy file="${src.dir}/jdk/internal/dynalink/support/messages.properties" todir="${build.classes.dir}/jdk/internal/dynalink/support"/> |
86cb162cec6c
8008085: Integrate Dynalink source code into Nashorn codebase
attila
parents:
16231
diff
changeset
|
139 |
|
16147 | 140 |
<echo message="full=${nashorn.fullversion}" file="${build.classes.dir}/jdk/nashorn/internal/runtime/resources/version.properties"/> |
141 |
<echo file="${build.classes.dir}/jdk/nashorn/internal/runtime/resources/version.properties" append="true">${line.separator}</echo> |
|
142 |
<echo message="release=${nashorn.version}" file="${build.classes.dir}/jdk/nashorn/internal/runtime/resources/version.properties" append="true"/> |
|
143 |
</target> |
|
144 |
||
18630
48e3dc4bf0f6
8019580: Build Script Change for Nashorn promotion testing
jlaskey
parents:
17767
diff
changeset
|
145 |
<target name="jar" depends="compile, run-nasgen, generate-cc-template" description="Creates nashorn.jar" unless="compile.suppress.jar"> |
16147 | 146 |
<jar jarfile="${dist.jar}" manifest="${meta.inf.dir}/MANIFEST.MF" index="true" filesetmanifest="merge"> |
147 |
<fileset dir="${build.classes.dir}"/> |
|
148 |
<manifest> |
|
149 |
<attribute name="Archiver-Version" value="n/a"/> |
|
150 |
<attribute name="Build-Jdk" value="${java.runtime.version}"/> |
|
151 |
<attribute name="Built-By" value="n/a"/> |
|
152 |
<attribute name="Created-By" value="Ant jar task"/> |
|
153 |
<section name="jdk/nashorn/"> |
|
154 |
<attribute name="Implementation-Title" value="${nashorn.product.name}"/> |
|
155 |
<attribute name="Implementation-Version" value="${nashorn.version}"/> |
|
156 |
</section> |
|
157 |
</manifest> |
|
158 |
</jar> |
|
159 |
</target> |
|
18630
48e3dc4bf0f6
8019580: Build Script Change for Nashorn promotion testing
jlaskey
parents:
17767
diff
changeset
|
160 |
|
48e3dc4bf0f6
8019580: Build Script Change for Nashorn promotion testing
jlaskey
parents:
17767
diff
changeset
|
161 |
<target name="use-promoted-nashorn" depends="init"> |
48e3dc4bf0f6
8019580: Build Script Change for Nashorn promotion testing
jlaskey
parents:
17767
diff
changeset
|
162 |
<delete file="${dist.dir}/nashorn.jar"/> |
48e3dc4bf0f6
8019580: Build Script Change for Nashorn promotion testing
jlaskey
parents:
17767
diff
changeset
|
163 |
<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
|
164 |
<property name="compile.suppress.jar" value="defined"/> |
48e3dc4bf0f6
8019580: Build Script Change for Nashorn promotion testing
jlaskey
parents:
17767
diff
changeset
|
165 |
</target> |
48e3dc4bf0f6
8019580: Build Script Change for Nashorn promotion testing
jlaskey
parents:
17767
diff
changeset
|
166 |
|
16763 | 167 |
<target name="build-fxshell" depends="jar"> |
168 |
<description>Builds the javafx shell.</description> |
|
169 |
<mkdir dir="${fxshell.classes.dir}"/> |
|
170 |
<javac srcdir="${fxshell.dir}" |
|
171 |
destdir="${fxshell.classes.dir}" |
|
172 |
classpath="${dist.jar}:${javac.classpath}" |
|
173 |
debug="${javac.debug}" |
|
174 |
encoding="${javac.encoding}" |
|
175 |
includeantruntime="false"> |
|
176 |
</javac> |
|
177 |
<jar jarfile="${fxshell.jar}" manifest="${meta.inf.dir}/MANIFEST.MF" index="true" filesetmanifest="merge"> |
|
178 |
<fileset dir="${fxshell.classes.dir}"/> |
|
179 |
<manifest> |
|
180 |
<attribute name="Archiver-Version" value="n/a"/> |
|
181 |
<attribute name="Build-Jdk" value="${java.runtime.version}"/> |
|
182 |
<attribute name="Built-By" value="n/a"/> |
|
183 |
<attribute name="Created-By" value="Ant jar task"/> |
|
184 |
<section name="jdk/nashorn/"> |
|
185 |
<attribute name="Implementation-Title" value="Oracle Nashorn FXShell"/> |
|
186 |
<attribute name="Implementation-Version" value="${nashorn.version}"/> |
|
187 |
</section> |
|
188 |
</manifest> |
|
189 |
</jar> |
|
190 |
</target> |
|
16147 | 191 |
|
16154
de44634fa4ec
8005782: get rid of javadoc errors, warnings in nashorn build
sundar
parents:
16151
diff
changeset
|
192 |
<target name="javadoc" depends="prepare"> |
de44634fa4ec
8005782: get rid of javadoc errors, warnings in nashorn build
sundar
parents:
16151
diff
changeset
|
193 |
<javadoc destdir="${dist.javadoc.dir}" use="yes" overview="src/overview.html" windowtitle="${nashorn.product.name} ${nashorn.version}" additionalparam="-quiet" failonerror="true"> |
16147 | 194 |
<classpath> |
195 |
<pathelement location="${build.classes.dir}"/> |
|
196 |
</classpath> |
|
197 |
<fileset dir="${src.dir}" includes="**/*.java"/> |
|
16154
de44634fa4ec
8005782: get rid of javadoc errors, warnings in nashorn build
sundar
parents:
16151
diff
changeset
|
198 |
<fileset dir="${jdk.asm.src.dir}" includes="**/*.java"/> |
de44634fa4ec
8005782: get rid of javadoc errors, warnings in nashorn build
sundar
parents:
16151
diff
changeset
|
199 |
<link href="http://docs.oracle.com/javase/7/docs/api/"/> |
de44634fa4ec
8005782: get rid of javadoc errors, warnings in nashorn build
sundar
parents:
16151
diff
changeset
|
200 |
<!-- The following tags are used only in ASM sources - just ignore these --> |
de44634fa4ec
8005782: get rid of javadoc errors, warnings in nashorn build
sundar
parents:
16151
diff
changeset
|
201 |
<tag name="label" description="label tag in ASM sources" enabled="false"/> |
de44634fa4ec
8005782: get rid of javadoc errors, warnings in nashorn build
sundar
parents:
16151
diff
changeset
|
202 |
<tag name="linked" description="linked tag in ASM sources" enabled="false"/> |
de44634fa4ec
8005782: get rid of javadoc errors, warnings in nashorn build
sundar
parents:
16151
diff
changeset
|
203 |
<tag name="associates" description="associates tag in ASM sources" enabled="false"/> |
16147 | 204 |
</javadoc> |
205 |
</target> |
|
206 |
||
207 |
<!-- generate shell.html for shell tool documentation --> |
|
208 |
<target name="shelldoc" depends="jar"> |
|
209 |
<java classname="${nashorn.shell.tool}" dir="${basedir}" output="${dist.dir}/shell.html" failonerror="true" fork="true"> |
|
210 |
<jvmarg line="${ext.class.path}"/> |
|
211 |
<arg value="-scripting"/> |
|
212 |
<arg value="docs/genshelldoc.js"/> |
|
213 |
</java> |
|
214 |
</target> |
|
215 |
||
216 |
<!-- generate all docs --> |
|
217 |
<target name="docs" depends="javadoc, shelldoc"/> |
|
218 |
||
219 |
<!-- create .zip and .tar.gz for nashorn binaries and scripts. --> |
|
220 |
<target name="dist" depends="jar"> |
|
221 |
<zip destfile="${build.zip}" basedir=".." |
|
222 |
excludes="nashorn/bin/*.sh" includes="nashorn/bin/** nashorn/dist/**"/> |
|
223 |
<tar destfile="${build.gzip}" basedir=".." compression="gzip" |
|
224 |
excludes="nashorn/bin/*.sh" includes="nashorn/bin/** nashorn/dist/**"/> |
|
225 |
</target> |
|
226 |
||
227 |
<target name="compile-test" depends="compile, run-nasgen" if="testng.available"> |
|
228 |
<!-- testng task --> |
|
229 |
<taskdef name="testng" classname="org.testng.TestNGAntTask" |
|
230 |
classpath="${file.reference.testng.jar}"/> |
|
231 |
||
232 |
<javac srcdir="${test.src.dir}" |
|
233 |
destdir="${build.test.classes.dir}" |
|
234 |
classpath="${javac.test.classpath}" |
|
235 |
source="${javac.source}" |
|
236 |
target="${javac.target}" |
|
237 |
debug="${javac.debug}" |
|
238 |
encoding="${javac.encoding}" |
|
18865
8844964e5fc5
8020325: static property does not work on accessible, public classes
sundar
parents:
18851
diff
changeset
|
239 |
includeantruntime="false" fork="true"> |
8844964e5fc5
8020325: static property does not work on accessible, public classes
sundar
parents:
18851
diff
changeset
|
240 |
<compilerarg value="-J-Djava.ext.dirs="/> |
8844964e5fc5
8020325: static property does not work on accessible, public classes
sundar
parents:
18851
diff
changeset
|
241 |
<compilerarg value="-Xlint:unchecked"/> |
8844964e5fc5
8020325: static property does not work on accessible, public classes
sundar
parents:
18851
diff
changeset
|
242 |
<compilerarg value="-Xlint:deprecation"/> |
17757
892b9873e831
8014909: ant test compilation error with JoniTest.java
sundar
parents:
17753
diff
changeset
|
243 |
</javac> |
16221
38ac51eba133
8007715: Make sure that not all tests run with AllPermission
sundar
parents:
16170
diff
changeset
|
244 |
|
19895
965b12eb322e
8024619: JDBC java.sql.DriverManager is not usable from JS script
sundar
parents:
19894
diff
changeset
|
245 |
<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
|
246 |
<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
|
247 |
</copy> |
965b12eb322e
8024619: JDBC java.sql.DriverManager is not usable from JS script
sundar
parents:
19894
diff
changeset
|
248 |
|
20564
f353da961684
8025629: load function should support a way to load scripts from classpath
sundar
parents:
20212
diff
changeset
|
249 |
<copy todir="${build.test.classes.dir}/jdk/nashorn/internal/runtime/resources"> |
f353da961684
8025629: load function should support a way to load scripts from classpath
sundar
parents:
20212
diff
changeset
|
250 |
<fileset dir="${test.src.dir}/jdk/nashorn/internal/runtime/resources"/> |
f353da961684
8025629: load function should support a way to load scripts from classpath
sundar
parents:
20212
diff
changeset
|
251 |
</copy> |
f353da961684
8025629: load function should support a way to load scripts from classpath
sundar
parents:
20212
diff
changeset
|
252 |
|
16221
38ac51eba133
8007715: Make sure that not all tests run with AllPermission
sundar
parents:
16170
diff
changeset
|
253 |
<!-- tests that check nashorn internals and internal API --> |
38ac51eba133
8007715: Make sure that not all tests run with AllPermission
sundar
parents:
16170
diff
changeset
|
254 |
<jar jarfile="${nashorn.internal.tests.jar}"> |
16522 | 255 |
<fileset dir="${build.test.classes.dir}" excludes="**/api/**"/> |
16221
38ac51eba133
8007715: Make sure that not all tests run with AllPermission
sundar
parents:
16170
diff
changeset
|
256 |
</jar> |
38ac51eba133
8007715: Make sure that not all tests run with AllPermission
sundar
parents:
16170
diff
changeset
|
257 |
|
38ac51eba133
8007715: Make sure that not all tests run with AllPermission
sundar
parents:
16170
diff
changeset
|
258 |
<!-- tests that check nashorn script engine (jsr-223) API --> |
38ac51eba133
8007715: Make sure that not all tests run with AllPermission
sundar
parents:
16170
diff
changeset
|
259 |
<jar jarfile="${nashorn.api.tests.jar}"> |
16522 | 260 |
<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
|
261 |
<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
|
262 |
<fileset dir="${build.test.classes.dir}" includes="**/resources/*.js"/> |
16221
38ac51eba133
8007715: Make sure that not all tests run with AllPermission
sundar
parents:
16170
diff
changeset
|
263 |
</jar> |
38ac51eba133
8007715: Make sure that not all tests run with AllPermission
sundar
parents:
16170
diff
changeset
|
264 |
|
16147 | 265 |
</target> |
266 |
||
16236
ca6274fb36fe
8007990: No access to interface methods on a restricted class
attila
parents:
16234
diff
changeset
|
267 |
<target name="generate-policy-file" depends="prepare"> |
18841
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
268 |
<echo file="${build.dir}/nashorn.policy"> |
16221
38ac51eba133
8007715: Make sure that not all tests run with AllPermission
sundar
parents:
16170
diff
changeset
|
269 |
|
18841
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
270 |
grant codeBase "file:/${basedir}/${nashorn.internal.tests.jar}" { |
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
271 |
permission java.security.AllPermission; |
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
272 |
}; |
18630
48e3dc4bf0f6
8019580: Build Script Change for Nashorn promotion testing
jlaskey
parents:
17767
diff
changeset
|
273 |
|
18841
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
274 |
grant codeBase "file:/${basedir}/${file.reference.testng.jar}" { |
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
275 |
permission java.security.AllPermission; |
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
276 |
}; |
16147 | 277 |
|
18841
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
278 |
grant codeBase "file:/${basedir}/test/script/trusted/*" { |
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
279 |
permission java.security.AllPermission; |
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
280 |
}; |
16147 | 281 |
|
18841
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
282 |
grant codeBase "file:/${basedir}/test/script/basic/*" { |
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
283 |
permission java.io.FilePermission "${basedir}/test/script/-", "read"; |
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
284 |
permission java.io.FilePermission "$${user.dir}", "read"; |
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
285 |
permission java.util.PropertyPermission "user.dir", "read"; |
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
286 |
permission java.util.PropertyPermission "nashorn.test.*", "read"; |
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
287 |
}; |
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
288 |
|
19894
195477810711
8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
19103
diff
changeset
|
289 |
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
|
290 |
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
|
291 |
permission java.io.FilePermission "$${user.dir}", "read"; |
195477810711
8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
19103
diff
changeset
|
292 |
permission java.util.PropertyPermission "user.dir", "read"; |
195477810711
8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
19103
diff
changeset
|
293 |
permission java.util.PropertyPermission "nashorn.test.*", "read"; |
195477810711
8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
19103
diff
changeset
|
294 |
}; |
195477810711
8024693: Various minor issues with JSONWriter used by script parser API
sundar
parents:
19103
diff
changeset
|
295 |
|
18841
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
296 |
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
|
297 |
permission java.util.PropertyPermission "java.security.policy", "read"; |
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
298 |
}; |
19087
47d02733b128
8020820: Limit access to static members of reflective classes
attila
parents:
19082
diff
changeset
|
299 |
|
47d02733b128
8020820: Limit access to static members of reflective classes
attila
parents:
19082
diff
changeset
|
300 |
grant codeBase "file:/${basedir}/test/script/basic/classloader.js" { |
47d02733b128
8020820: Limit access to static members of reflective classes
attila
parents:
19082
diff
changeset
|
301 |
permission java.lang.RuntimePermission "nashorn.JavaReflection"; |
47d02733b128
8020820: Limit access to static members of reflective classes
attila
parents:
19082
diff
changeset
|
302 |
}; |
47d02733b128
8020820: Limit access to static members of reflective classes
attila
parents:
19082
diff
changeset
|
303 |
|
18841
9bbc4b8832b2
8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents:
18630
diff
changeset
|
304 |
</echo> |
16147 | 305 |
|
306 |
<replace file="${build.dir}/nashorn.policy"><replacetoken>\</replacetoken><replacevalue>/</replacevalue></replace> <!--hack for Windows - to make URLs with normal path separators --> |
|
307 |
<replace file="${build.dir}/nashorn.policy"><replacetoken>//</replacetoken><replacevalue>/</replacevalue></replace> <!--hack for Unix - to avoid leading // in URLs --> |
|
308 |
||
309 |
</target> |
|
310 |
||
311 |
<target name="check-external-tests"> |
|
312 |
<available file="${test.external.dir}/prototype" property="test-sys-prop.external.prototype"/> |
|
313 |
<available file="${test.external.dir}/sunspider" property="test-sys-prop.external.sunspider"/> |
|
314 |
<available file="${test.external.dir}/underscore" property="test-sys-prop.external.underscore"/> |
|
315 |
<available file="${test.external.dir}/octane" property="test-sys-prop.external.octane"/> |
|
316 |
<available file="${test.external.dir}/yui" property="test-sys-prop.external.yui"/> |
|
317 |
<available file="${test.external.dir}/jquery" property="test-sys-prop.external.jquery"/> |
|
318 |
<available file="${test.external.dir}/test262" property="test-sys-prop.external.test262"/> |
|
319 |
</target> |
|
320 |
||
321 |
<target name="check-testng" unless="testng.available"> |
|
322 |
<echo message="WARNING: TestNG not available, will not run tests. Please copy testng.jar under test/lib directory."/> |
|
323 |
</target> |
|
324 |
||
325 |
<target name="test" depends="jar, check-testng, check-external-tests, compile-test, generate-policy-file" if="testng.available"> |
|
326 |
<fileset id="test.classes" dir="${build.test.classes.dir}"> |
|
16263
0679aaa72927
8008789: Enable java access and nashorn runtime tests for jtreg
sundar
parents:
16255
diff
changeset
|
327 |
<include name="**/api/javaaccess/*Test.class"/> |
16147 | 328 |
<include name="**/api/scripting/*Test.class"/> |
329 |
<include name="**/codegen/*Test.class"/> |
|
330 |
<include name="**/parser/*Test.class"/> |
|
331 |
<include name="**/runtime/*Test.class"/> |
|
17753 | 332 |
<include name="**/runtime/regexp/*Test.class"/> |
333 |
<include name="**/runtime/regexp/joni/*Test.class"/> |
|
16147 | 334 |
<include name="**/framework/*Test.class"/> |
335 |
</fileset> |
|
336 |
||
337 |
<testng outputdir="${build.test.results.dir}" classfilesetref="test.classes" |
|
338 |
verbose="${testng.verbose}" haltonfailure="true" useDefaultListeners="false" listeners="${testng.listeners}" workingDir="${basedir}"> |
|
339 |
<jvmarg line="${ext.class.path}"/> |
|
20212
5e7711039ab0
8023154: compileAllTests fails with: 2 tests failed to compile
hannesw
parents:
19895
diff
changeset
|
340 |
<jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx} ${run.test.jvmsecurityargs}"/> |
16147 | 341 |
<propertyset> |
342 |
<propertyref prefix="test-sys-prop."/> |
|
343 |
<mapper from="test-sys-prop.*" to="*" type="glob"/> |
|
344 |
</propertyset> |
|
19082
6926097854f6
8017585: Exclude two failing tests from Nashorn CC run
jlaskey
parents:
18865
diff
changeset
|
345 |
<sysproperty key="test.js.excludes.file" value="${exclude.list}"/> |
16147 | 346 |
<classpath> |
347 |
<pathelement path="${run.test.classpath}"/> |
|
348 |
</classpath> |
|
349 |
</testng> |
|
350 |
</target> |
|
351 |
||
352 |
<target name="test-basicparallel" depends="jar, check-testng, check-external-tests, compile-test, generate-policy-file"> |
|
353 |
<!-- use just build.test.classes.dir to avoid referring to TestNG --> |
|
354 |
<java classname="${parallel.test.runner}" dir="${basedir}" classpath="${build.test.classes.dir}" failonerror="true" fork="true"> |
|
355 |
<jvmarg line="${ext.class.path}"/> |
|
20212
5e7711039ab0
8023154: compileAllTests fails with: 2 tests failed to compile
hannesw
parents:
19895
diff
changeset
|
356 |
<jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx} ${run.test.jvmsecurityargs}"/> |
16147 | 357 |
<syspropertyset> |
358 |
<propertyref prefix="test-sys-prop."/> |
|
359 |
<mapper type="glob" from="test-sys-prop.*" to="*"/> |
|
360 |
</syspropertyset> |
|
361 |
</java> |
|
362 |
</target> |
|
363 |
||
21443
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
364 |
<target name="check-jemmy.jfx.testng" unless="jemmy.jfx.testng.available"> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
365 |
<echo message="WARNING: Jemmy or JavaFX or TestNG not available, will not run tests. Please copy testng.jar, JemmyCore.jar, JemmyFX.jar, JemmyAWTInput.jar under test${file.separator}lib directory. And make sure you have jfxrt.jar in ${java.home}${file.separator}lib${file.separator}ext dir."/> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
366 |
</target> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
367 |
|
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
368 |
<target name="testjfx" depends="jar, check-jemmy.jfx.testng, compile-test" if="jemmy.jfx.testng.available"> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
369 |
<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
|
370 |
<include name="**/framework/*Test.class"/> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
371 |
</fileset> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
372 |
|
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
373 |
<copy file="${file.reference.jfxrt.jar}" todir="dist"/> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
374 |
|
21690
ffbb4611d1f4
8027708: NASHORN TEST: Create Nashorn test that draws image step-by-step using JavaFX canvas.
kshefov
parents:
21443
diff
changeset
|
375 |
<condition property="jfx.prism.order" value="-Dprism.order=j2d" else=" "> |
ffbb4611d1f4
8027708: NASHORN TEST: Create Nashorn test that draws image step-by-step using JavaFX canvas.
kshefov
parents:
21443
diff
changeset
|
376 |
<not> |
ffbb4611d1f4
8027708: NASHORN TEST: Create Nashorn test that draws image step-by-step using JavaFX canvas.
kshefov
parents:
21443
diff
changeset
|
377 |
<os family="mac"/> |
ffbb4611d1f4
8027708: NASHORN TEST: Create Nashorn test that draws image step-by-step using JavaFX canvas.
kshefov
parents:
21443
diff
changeset
|
378 |
</not> |
ffbb4611d1f4
8027708: NASHORN TEST: Create Nashorn test that draws image step-by-step using JavaFX canvas.
kshefov
parents:
21443
diff
changeset
|
379 |
</condition> |
ffbb4611d1f4
8027708: NASHORN TEST: Create Nashorn test that draws image step-by-step using JavaFX canvas.
kshefov
parents:
21443
diff
changeset
|
380 |
|
21443
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
381 |
<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
|
382 |
verbose="${testng.verbose}" haltonfailure="true" useDefaultListeners="false" listeners="${testng.listeners}" workingDir="${basedir}"> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
383 |
<jvmarg line="${ext.class.path}"/> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
384 |
<jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx}"/> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
385 |
<propertyset> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
386 |
<propertyref prefix="testjfx-test-sys-prop."/> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
387 |
<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
|
388 |
</propertyset> |
21690
ffbb4611d1f4
8027708: NASHORN TEST: Create Nashorn test that draws image step-by-step using JavaFX canvas.
kshefov
parents:
21443
diff
changeset
|
389 |
<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
|
390 |
<classpath> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
391 |
<pathelement path="${testjfx.run.test.classpath}"/> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
392 |
</classpath> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
393 |
</testng> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
394 |
</target> |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20564
diff
changeset
|
395 |
|
16231
9c8790061bee
8008193: test262 tests should be run with security manager enabled
sundar
parents:
16226
diff
changeset
|
396 |
<target name="test262" depends="jar, check-testng, check-external-tests, compile-test, generate-policy-file" if="testng.available"> |
16147 | 397 |
<fileset id="test.classes" dir="${build.test.classes.dir}"> |
398 |
<include name="**/framework/*Test.class"/> |
|
399 |
</fileset> |
|
400 |
||
401 |
<testng outputdir="${build.test.results.dir}" classfilesetref="test.classes" |
|
402 |
verbose="${testng.verbose}" haltonfailure="true" useDefaultListeners="false" listeners="${testng.listeners}" workingDir="${basedir}"> |
|
403 |
<jvmarg line="${ext.class.path}"/> |
|
20212
5e7711039ab0
8023154: compileAllTests fails with: 2 tests failed to compile
hannesw
parents:
19895
diff
changeset
|
404 |
<jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx} ${run.test.jvmsecurityargs}"/> |
16147 | 405 |
<propertyset> |
406 |
<propertyref prefix="test262-test-sys-prop."/> |
|
407 |
<mapper from="test262-test-sys-prop.*" to="*" type="glob"/> |
|
408 |
</propertyset> |
|
409 |
<classpath> |
|
410 |
<pathelement path="${run.test.classpath}"/> |
|
411 |
</classpath> |
|
412 |
</testng> |
|
413 |
</target> |
|
414 |
||
415 |
<target name="test262parallel" depends="test262-parallel"/> |
|
416 |
||
16231
9c8790061bee
8008193: test262 tests should be run with security manager enabled
sundar
parents:
16226
diff
changeset
|
417 |
<target name="test262-parallel" depends="jar, check-testng, check-external-tests, compile-test, generate-policy-file" if="testng.available"> |
16147 | 418 |
<!-- use just build.test.classes.dir to avoid referring to TestNG --> |
16231
9c8790061bee
8008193: test262 tests should be run with security manager enabled
sundar
parents:
16226
diff
changeset
|
419 |
<java classname="${parallel.test.runner}" dir="${basedir}" fork="true"> |
16147 | 420 |
<jvmarg line="${ext.class.path}"/> |
20212
5e7711039ab0
8023154: compileAllTests fails with: 2 tests failed to compile
hannesw
parents:
19895
diff
changeset
|
421 |
<jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx} ${run.test.jvmsecurityargs}"/> |
16231
9c8790061bee
8008193: test262 tests should be run with security manager enabled
sundar
parents:
16226
diff
changeset
|
422 |
<classpath> |
9c8790061bee
8008193: test262 tests should be run with security manager enabled
sundar
parents:
16226
diff
changeset
|
423 |
<pathelement path="${run.test.classpath}"/> |
9c8790061bee
8008193: test262 tests should be run with security manager enabled
sundar
parents:
16226
diff
changeset
|
424 |
</classpath> |
16147 | 425 |
<syspropertyset> |
426 |
<propertyref prefix="test262-test-sys-prop."/> |
|
427 |
<mapper type="glob" from="test262-test-sys-prop.*" to="*"/> |
|
428 |
</syspropertyset> |
|
429 |
</java> |
|
430 |
</target> |
|
431 |
||
432 |
<target name="all" depends="test, docs" |
|
433 |
description="Build, test and generate docs for nashorn"/> |
|
434 |
||
435 |
<target name="run" depends="jar" |
|
436 |
description="Run the shell with a sample script"> |
|
437 |
<java classname="${nashorn.shell.tool}" fork="true" dir="samples"> |
|
438 |
<jvmarg line="${ext.class.path}"/> |
|
20212
5e7711039ab0
8023154: compileAllTests fails with: 2 tests failed to compile
hannesw
parents:
19895
diff
changeset
|
439 |
<jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx}"/> |
16147 | 440 |
<arg value="-dump-on-error"/> |
441 |
<arg value="test.js"/> |
|
442 |
</java> |
|
443 |
</target> |
|
444 |
||
445 |
<target name="debug" depends="jar" |
|
446 |
description="Debug the shell with a sample script"> |
|
447 |
<java classname="${nashorn.shell.tool}" fork="true" dir="samples"> |
|
448 |
<jvmarg line="${ext.class.path}"/> |
|
20212
5e7711039ab0
8023154: compileAllTests fails with: 2 tests failed to compile
hannesw
parents:
19895
diff
changeset
|
449 |
<jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx}"/> |
16147 | 450 |
<arg value="--print-code"/> |
451 |
<arg value="--verify-code"/> |
|
452 |
<arg value="--print-symbols"/> |
|
453 |
<jvmarg value="-Dnashorn.codegen.debug=true"/> |
|
454 |
<arg value="test.js"/> |
|
455 |
</java> |
|
456 |
</target> |
|
16163
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
457 |
|
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
458 |
<!-- targets to get external script tests --> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
459 |
|
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
460 |
<!-- test262 test suite --> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
461 |
<target name="get-test262" depends="init" unless="${test-sys-prop.external.test262}"> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
462 |
<!-- clone test262 mercurial repo --> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
463 |
<exec executable="${hg.executable}"> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
464 |
<arg value="clone"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
465 |
<arg value="http://hg.ecmascript.org/tests/test262"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
466 |
<arg value="${test.external.dir}/test262"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
467 |
</exec> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
468 |
</target> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
469 |
<target name="update-test262" depends="init" if="${test-sys-prop.external.test262}"> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
470 |
<!-- update test262 mercurial repo --> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
471 |
<exec executable="${hg.executable}" dir="${test.external.dir}/test262"> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
472 |
<arg value="pull"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
473 |
<arg value="-u"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
474 |
</exec> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
475 |
</target> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
476 |
|
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
477 |
<!-- octane benchmark --> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
478 |
<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
|
479 |
<!-- checkout octane benchmarks --> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
480 |
<exec executable="${svn.executable}"> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
481 |
<arg value="--non-interactive"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
482 |
<arg value="--trust-server-cert"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
483 |
<arg value="checkout"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
484 |
<arg value="http://octane-benchmark.googlecode.com/svn/trunk/"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
485 |
<arg value="${test.external.dir}/octane"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
486 |
</exec> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
487 |
</target> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
488 |
<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
|
489 |
<!-- update octane benchmarks --> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
490 |
<exec executable="${svn.executable}" dir="${test.external.dir}/octane"> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
491 |
<arg value="--non-interactive"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
492 |
<arg value="--trust-server-cert"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
493 |
<arg value="update"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
494 |
</exec> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
495 |
</target> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
496 |
|
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
497 |
<!-- sunspider benchmark --> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
498 |
<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
|
499 |
<!-- checkout sunspider --> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
500 |
<exec executable="${svn.executable}"> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
501 |
<arg value="--non-interactive"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
502 |
<arg value="--trust-server-cert"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
503 |
<arg value="checkout"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
504 |
<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
|
505 |
<arg value="${test.external.dir}/sunspider"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
506 |
</exec> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
507 |
</target> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
508 |
<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
|
509 |
<!-- update sunspider --> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
510 |
<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
|
511 |
<arg value="--non-interactive"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
512 |
<arg value="--trust-server-cert"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
513 |
<arg value="update"/> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
514 |
</exec> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
515 |
</target> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
516 |
|
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
517 |
<!-- get all external test scripts --> |
16170
9e3f4e0b519b
8006093: Add a makefile target to run all tests (test, test262, perf tests)
sundar
parents:
16163
diff
changeset
|
518 |
<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
|
519 |
<!-- make external test dir --> |
18630
48e3dc4bf0f6
8019580: Build Script Change for Nashorn promotion testing
jlaskey
parents:
17767
diff
changeset
|
520 |
<mkdir dir="${test.external.dir}"/> |
16163
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
521 |
|
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
522 |
<!-- jquery --> |
18630
48e3dc4bf0f6
8019580: Build Script Change for Nashorn promotion testing
jlaskey
parents:
17767
diff
changeset
|
523 |
<mkdir dir="${test.external.dir}/jquery"/> |
16163
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
524 |
<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
|
525 |
<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
|
526 |
|
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
527 |
<!-- prototype --> |
18630
48e3dc4bf0f6
8019580: Build Script Change for Nashorn promotion testing
jlaskey
parents:
17767
diff
changeset
|
528 |
<mkdir dir="${test.external.dir}/prototype"/> |
16163
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
529 |
<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
|
530 |
|
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
531 |
<!-- underscorejs --> |
18630
48e3dc4bf0f6
8019580: Build Script Change for Nashorn promotion testing
jlaskey
parents:
17767
diff
changeset
|
532 |
<mkdir dir="${test.external.dir}/underscore"/> |
16163
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
533 |
<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
|
534 |
<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
|
535 |
|
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
536 |
<!-- yui --> |
18630
48e3dc4bf0f6
8019580: Build Script Change for Nashorn promotion testing
jlaskey
parents:
17767
diff
changeset
|
537 |
<mkdir dir="${test.external.dir}/yui"/> |
16163
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
538 |
<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
|
539 |
<get src="http://yui.yahooapis.com/3.5.1/build/yui/yui-min.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
|
540 |
|
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
541 |
</target> |
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
542 |
|
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
543 |
<!-- 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
|
544 |
<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
|
545 |
|
9e3f4e0b519b
8006093: Add a makefile target to run all tests (test, test262, perf tests)
sundar
parents:
16163
diff
changeset
|
546 |
<!-- run all perf tests --> |
9e3f4e0b519b
8006093: Add a makefile target to run all tests (test, test262, perf tests)
sundar
parents:
16163
diff
changeset
|
547 |
<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
|
548 |
|
9e3f4e0b519b
8006093: Add a makefile target to run all tests (test, test262, perf tests)
sundar
parents:
16163
diff
changeset
|
549 |
<!-- run all tests --> |
9e3f4e0b519b
8006093: Add a makefile target to run all tests (test, test262, perf tests)
sundar
parents:
16163
diff
changeset
|
550 |
<target name="exit-if-no-testng" depends="init, check-testng" unless="${testng.available}"> |
9e3f4e0b519b
8006093: Add a makefile target to run all tests (test, test262, perf tests)
sundar
parents:
16163
diff
changeset
|
551 |
<fail message="Exiting.."/> |
9e3f4e0b519b
8006093: Add a makefile target to run all tests (test, test262, perf tests)
sundar
parents:
16163
diff
changeset
|
552 |
</target> |
9e3f4e0b519b
8006093: Add a makefile target to run all tests (test, test262, perf tests)
sundar
parents:
16163
diff
changeset
|
553 |
|
9e3f4e0b519b
8006093: Add a makefile target to run all tests (test, test262, perf tests)
sundar
parents:
16163
diff
changeset
|
554 |
<target name="alltests" depends="exit-if-no-testng, externals, update-externals, test, test262parallel, perf"/> |
16163
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16154
diff
changeset
|
555 |
|
16147 | 556 |
</project> |