test/jdk/javax/script/ScriptEngineOrder.sh
changeset 48720 290b480df13e
equal deleted inserted replaced
48719:678e1ec433a0 48720:290b480df13e
       
     1 #
       
     2 # Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
       
     3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
       
     4 #
       
     5 # This code is free software; you can redistribute it and/or modify it
       
     6 # under the terms of the GNU General Public License version 2 only, as
       
     7 # published by the Free Software Foundation.
       
     8 #
       
     9 # This code is distributed in the hope that it will be useful, but WITHOUT
       
    10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
       
    11 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
       
    12 # version 2 for more details (a copy is included in the LICENSE file that
       
    13 # accompanied this code).
       
    14 #
       
    15 # You should have received a copy of the GNU General Public License version
       
    16 # 2 along with this work; if not, write to the Free Software Foundation,
       
    17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
       
    18 #
       
    19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
       
    20 # or visit www.oracle.com if you need additional information or have any
       
    21 # questions.
       
    22 #
       
    23 
       
    24 # @test
       
    25 # @bug 8011697
       
    26 # @summary test to check consistency in discovering and returning script engine 
       
    27 # by ScriptEngineManager
       
    28 #
       
    29 # @run shell ScriptEngineOrder.sh
       
    30 
       
    31 set -x
       
    32 if [ "${TESTSRC}" = "" ]
       
    33 then
       
    34   echo "TESTSRC not set.  Test cannot execute.  Failed."
       
    35   exit 1
       
    36 fi
       
    37 
       
    38 . ${TESTSRC}/CommonSetup.sh
       
    39 
       
    40 echo "Building dummy script engine modules.."
       
    41 #test to check the consistency in returning engines by ScriptEngineManager
       
    42 $JAVAC --limit-modules java.base,java.logging,java.scripting,jdk.scripting.dummyNashorn,jdk.scripting.dummyRhino,jdk.scripting.testEngines -d ${TESTCLASSES}/mods --module-source-path ${TESTSRC}/multiEngines $(find ${TESTSRC}/multiEngines -name *.java)
       
    43 
       
    44 echo "Running script engine test.."
       
    45 $JAVA --limit-modules java.base,java.logging,java.scripting,jdk.scripting.dummyNashorn,jdk.scripting.dummyRhino,jdk.scripting.testEngines --module-path ${TESTCLASSES}/mods --module jdk.scripting.testEngines/jdk.test.engines.ScriptEngineTest
       
    46 
       
    47 ret=$?
       
    48 if [ $ret -ne 0 ]
       
    49 then
       
    50   exit $ret
       
    51 fi
       
    52