jdk/test/sun/security/krb5/runNameEquals.sh
author alanb
Fri, 11 Jan 2013 20:19:55 +0000
changeset 15254 3997a6f357cb
parent 14786 a9f61e0cbe61
child 17435 ec797e955dca
permissions -rw-r--r--
8005978: shell tests need to use the $COMPILEJDK for javac, jar and other tools Reviewed-by: chegar
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5300
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
     1
#
14342
8435a30053c1 7197491: update copyright year to match last edit in jdk8 jdk repository
alanb
parents: 12047
diff changeset
     2
# Copyright (c) 2009, 2012, Oracle and/or its affiliates. All rights reserved.
5300
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
     4
#
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
     7
# published by the Free Software Foundation.
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
     8
#
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
     9
# This code is distributed in the hope that it will be useful, but WITHOUT
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    10
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    11
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    12
# version 2 for more details (a copy is included in the LICENSE file that
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    13
# accompanied this code).
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    14
#
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    15
# You should have received a copy of the GNU General Public License version
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    16
# 2 along with this work; if not, write to the Free Software Foundation,
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    17
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    18
#
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5300
diff changeset
    19
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5300
diff changeset
    20
# or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5300
diff changeset
    21
# questions.
5300
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    22
#
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    23
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    24
# @test
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    25
# @bug 6317711 6944847
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    26
# @summary Ensure the GSSName has the correct impl which respects
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    27
# the contract for equals and hashCode across different configurations.
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    28
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    29
# set a few environment variables so that the shell-script can run stand-alone
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    30
# in the source directory
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    31
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    32
if [ "${TESTSRC}" = "" ] ; then
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    33
   TESTSRC="."
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    34
fi
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    35
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    36
if [ "${TESTCLASSES}" = "" ] ; then
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    37
   TESTCLASSES="."
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    38
fi
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    39
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    40
if [ "${TESTJAVA}" = "" ] ; then
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    41
   echo "TESTJAVA not set.  Test cannot execute."
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    42
   echo "FAILED!!!"
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    43
   exit 1
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    44
fi
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    45
15254
3997a6f357cb 8005978: shell tests need to use the $COMPILEJDK for javac, jar and other tools
alanb
parents: 14786
diff changeset
    46
if [ "${COMPILEJAVA}" = "" ]; then
3997a6f357cb 8005978: shell tests need to use the $COMPILEJDK for javac, jar and other tools
alanb
parents: 14786
diff changeset
    47
    COMPILEJAVA="${TESTJAVA}"
3997a6f357cb 8005978: shell tests need to use the $COMPILEJDK for javac, jar and other tools
alanb
parents: 14786
diff changeset
    48
fi
3997a6f357cb 8005978: shell tests need to use the $COMPILEJDK for javac, jar and other tools
alanb
parents: 14786
diff changeset
    49
5300
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    50
NATIVE=false
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    51
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    52
# set platform-dependent variables
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    53
OS=`uname -s`
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    54
case "$OS" in
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
    55
  SunOS | Linux )
5300
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    56
    PATHSEP=":"
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    57
    FILESEP="/"
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    58
    NATIVE=true
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    59
    ;;
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
    60
  Darwin )
5300
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    61
    PATHSEP=":"
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    62
    FILESEP="/"
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    63
    ;;
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    64
  CYGWIN* )
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    65
    PATHSEP=";"
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    66
    FILESEP="/"
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    67
    ;;
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    68
  Windows* )
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    69
    PATHSEP=";"
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    70
    FILESEP="\\"
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    71
    ;;
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    72
  * )
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    73
    echo "Unrecognized system!"
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    74
    exit 1;
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    75
    ;;
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    76
esac
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    77
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    78
TEST=Krb5NameEquals
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    79
15254
3997a6f357cb 8005978: shell tests need to use the $COMPILEJDK for javac, jar and other tools
alanb
parents: 14786
diff changeset
    80
${COMPILEJAVA}${FILESEP}bin${FILESEP}javac ${TESTJAVACOPTS} ${TESTTOOLVMOPTS} \
5300
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    81
    -d ${TESTCLASSES}${FILESEP} \
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    82
    ${TESTSRC}${FILESEP}${TEST}.java
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    83
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    84
EXIT_STATUS=0
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    85
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    86
if [ "${NATIVE}" = "true" ] ; then
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    87
    echo "Testing native provider"
14786
a9f61e0cbe61 8003890: corelibs test scripts should pass TESTVMOPTS
chegar
parents: 14342
diff changeset
    88
    ${TESTJAVA}${FILESEP}bin${FILESEP}java ${TESTVMOPTS} \
5300
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    89
        -classpath ${TESTCLASSES} \
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    90
        -Dsun.security.jgss.native=true \
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    91
        ${TEST}
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    92
    if [ $? != 0 ] ; then
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    93
        echo "Native provider fails"
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    94
        EXIT_STATUS=1
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    95
    fi
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    96
fi
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    97
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
    98
echo "Testing java provider"
14786
a9f61e0cbe61 8003890: corelibs test scripts should pass TESTVMOPTS
chegar
parents: 14342
diff changeset
    99
${TESTJAVA}${FILESEP}bin${FILESEP}java ${TESTVMOPTS} \
5300
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
   100
        -classpath ${TESTCLASSES} \
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
   101
        -Djava.security.krb5.realm=R \
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
   102
        -Djava.security.krb5.kdc=127.0.0.1 \
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
   103
        ${TEST}
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
   104
if [ $? != 0 ] ; then
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
   105
    echo "Java provider fails"
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
   106
    EXIT_STATUS=1
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
   107
fi
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
   108
a291a0bff79f 6944847: native gss lib names on linux
weijun
parents:
diff changeset
   109
exit ${EXIT_STATUS}