jrunscript-argsTest.sh revision 496
325N/A#!/bin/sh
325N/A
325N/A#
325N/A# Copyright 2005-2006 Sun Microsystems, Inc. All Rights Reserved.
325N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
325N/A#
325N/A# This code is free software; you can redistribute it and/or modify it
325N/A# under the terms of the GNU General Public License version 2 only, as
325N/A# published by the Free Software Foundation.
325N/A#
325N/A# This code is distributed in the hope that it will be useful, but WITHOUT
325N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
325N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
325N/A# version 2 for more details (a copy is included in the LICENSE file that
325N/A# accompanied this code).
325N/A#
325N/A# You should have received a copy of the GNU General Public License version
325N/A# 2 along with this work; if not, write to the Free Software Foundation,
325N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
325N/A#
325N/A# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
325N/A# CA 95054 USA or visit www.sun.com if you need additional information or
325N/A# have any questions.
325N/A#
325N/A
325N/A
325N/A# @test
325N/A# @bug 6265810 6705893
325N/A# @build CheckEngine
325N/A# @run shell jrunscript-argsTest.sh
325N/A# @summary Test passing of script arguments from command line
325N/A
325N/A. ${TESTSRC-.}/common.sh
325N/A
325N/Asetup
325N/A${JAVA} -cp ${TESTCLASSES} CheckEngine
325N/Aif [ $? -eq 2 ]; then
325N/A echo "No js engine found and engine not required; test vacuously passes."
325N/A exit 0
325N/Afi
325N/A
325N/A# we check whether "excess" args are passed as script arguments
325N/A
325N/A${JRUNSCRIPT} -f - hello world <<EOF
325N/A
325N/Aif (typeof(arguments) == 'undefined') { println("arguments expected"); exit(1); }
325N/A
325N/Aif (arguments.length != 2) { println("2 arguments are expected here"); exit(1); }
325N/A
325N/Aif (arguments[0] != 'hello') { println("First arg should be 'hello'"); exit(1); }
325N/A
325N/Aif (arguments[1] != 'world') { println("Second arg should be 'world'"); exit(1); }
325N/A
325N/Aprintln("Passed");
325N/Aexit(0);
325N/AEOF
325N/A
325N/Aif [ $? -ne 0 ]; then
325N/A exit 1
325N/Afi
325N/A