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