50754f7c2e
Reviewed-by: wetmore
76 lines
2.0 KiB
Bash
76 lines
2.0 KiB
Bash
#
|
|
# Copyright 2008-2009 Sun Microsystems, Inc. All Rights Reserved.
|
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
#
|
|
# This code is free software; you can redistribute it and/or modify it
|
|
# under the terms of the GNU General Public License version 2 only, as
|
|
# published by the Free Software Foundation.
|
|
#
|
|
# This code is distributed in the hope that it will be useful, but WITHOUT
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
# version 2 for more details (a copy is included in the LICENSE file that
|
|
# accompanied this code).
|
|
#
|
|
# You should have received a copy of the GNU General Public License version
|
|
# 2 along with this work; if not, write to the Free Software Foundation,
|
|
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
#
|
|
# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
|
|
# CA 95054 USA or visit www.sun.com if you need additional information or
|
|
# have any questions.
|
|
#
|
|
|
|
# @test
|
|
# @bug 6706974
|
|
# @summary Add krb5 test infrastructure
|
|
# @run shell/timeout=300 basic.sh
|
|
#
|
|
|
|
if [ "${TESTSRC}" = "" ] ; then
|
|
TESTSRC="."
|
|
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
|
|
Windows_* )
|
|
FS="\\"
|
|
SEP=";"
|
|
;;
|
|
CYGWIN* )
|
|
FS="/"
|
|
SEP=";"
|
|
;;
|
|
* )
|
|
FS="/"
|
|
SEP=":"
|
|
;;
|
|
esac
|
|
|
|
${TESTJAVA}${FS}bin${FS}javac -XDignore.symbol.file -d . \
|
|
${TESTSRC}${FS}BasicKrb5Test.java \
|
|
${TESTSRC}${FS}KDC.java \
|
|
${TESTSRC}${FS}OneKDC.java \
|
|
${TESTSRC}${FS}Action.java \
|
|
${TESTSRC}${FS}Context.java \
|
|
|| exit 10
|
|
|
|
# Add $TESTSRC to classpath so that customized nameservice can be used
|
|
J="${TESTJAVA}${FS}bin${FS}java -cp $TESTSRC${SEP}. BasicKrb5Test"
|
|
|
|
$J || exit 100
|
|
$J des-cbc-crc || exit 1
|
|
$J des-cbc-md5 || exit 3
|
|
$J des3-cbc-sha1 || exit 16
|
|
$J aes128-cts || exit 17
|
|
$J aes256-cts || exit 18
|
|
$J rc4-hmac || exit 23
|
|
|
|
exit 0
|