OpenPolicy.sh revision 0
395N/A#
395N/A# Copyright 1999-2002 Sun Microsystems, Inc. All Rights Reserved.
395N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
395N/A#
395N/A# This code is free software; you can redistribute it and/or modify it
395N/A# under the terms of the GNU General Public License version 2 only, as
395N/A# published by the Free Software Foundation.
395N/A#
395N/A# This code is distributed in the hope that it will be useful, but WITHOUT
395N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
395N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
395N/A# version 2 for more details (a copy is included in the LICENSE file that
395N/A# accompanied this code).
395N/A#
395N/A# You should have received a copy of the GNU General Public License version
395N/A# 2 along with this work; if not, write to the Free Software Foundation,
395N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
395N/A#
395N/A# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
395N/A# CA 95054 USA or visit www.sun.com if you need additional information or
395N/A# have any questions.
395N/A#
395N/A
395N/A# @test
395N/A# @bug 4224186
395N/A# @summary missing File.separatorChar when initially opening policy file
395N/A#
395N/A# @run applet/manual=done OpenPolicy.html
395N/A# @run shell OpenPolicy.sh
395N/A# @run applet/manual=yesno OpenPolicy.html
395N/A
395N/A# set a few environment variables so that the shell-script can run stand-alone
395N/A# in the source directory
395N/Aif [ "${TESTSRC}" = "" ] ; then
395N/A TESTSRC="."
395N/Afi
395N/Aif [ "${TESTCLASSES}" = "" ] ; then
395N/A TESTCLASSES="."
fi
if [ "${TESTJAVA}" = "" ] ; then
echo "TESTJAVA not set. Test cannot execute."
echo "FAILED!!!"
exit 1
fi
# set platform-dependent variables
OS=`uname -s`
case "$OS" in
SunOS | Linux )
NULL=/dev/null
PS=":"
FS="/"
TMP=/tmp
;;
Windows* )
NULL=NUL
PS=";"
FS="\\"
TMP="c:/temp"
;;
* )
echo "Unrecognized system!"
exit 1;
;;
esac
# the test code
echo "HELLO!"
${TESTJAVA}${FS}bin${FS}policytool
exit $?