author | weijun |
Tue, 07 May 2013 12:30:36 +0800 | |
changeset 17435 | ec797e955dca |
parent 15254 | 3997a6f357cb |
child 19824 | d0406202be67 |
permissions | -rw-r--r-- |
5300 | 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 | 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 |
# |
|
5506 | 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. |
|
5300 | 22 |
# |
23 |
||
24 |
# @test |
|
25 |
# @bug 6317711 6944847 |
|
26 |
# @summary Ensure the GSSName has the correct impl which respects |
|
27 |
# the contract for equals and hashCode across different configurations. |
|
28 |
||
29 |
# set a few environment variables so that the shell-script can run stand-alone |
|
30 |
# in the source directory |
|
31 |
||
32 |
if [ "${TESTSRC}" = "" ] ; then |
|
33 |
TESTSRC="." |
|
34 |
fi |
|
35 |
||
36 |
if [ "${TESTCLASSES}" = "" ] ; then |
|
37 |
TESTCLASSES="." |
|
38 |
fi |
|
39 |
||
40 |
if [ "${TESTJAVA}" = "" ] ; then |
|
41 |
echo "TESTJAVA not set. Test cannot execute." |
|
42 |
echo "FAILED!!!" |
|
43 |
exit 1 |
|
44 |
fi |
|
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 | 50 |
NATIVE=false |
51 |
||
52 |
# set platform-dependent variables |
|
53 |
OS=`uname -s` |
|
54 |
case "$OS" in |
|
17435 | 55 |
SunOS | Linux | Darwin ) |
5300 | 56 |
PATHSEP=":" |
57 |
FILESEP="/" |
|
58 |
NATIVE=true |
|
59 |
;; |
|
60 |
CYGWIN* ) |
|
61 |
PATHSEP=";" |
|
62 |
FILESEP="/" |
|
63 |
;; |
|
64 |
Windows* ) |
|
65 |
PATHSEP=";" |
|
66 |
FILESEP="\\" |
|
67 |
;; |
|
68 |
* ) |
|
69 |
echo "Unrecognized system!" |
|
70 |
exit 1; |
|
71 |
;; |
|
72 |
esac |
|
73 |
||
74 |
TEST=Krb5NameEquals |
|
75 |
||
15254
3997a6f357cb
8005978: shell tests need to use the $COMPILEJDK for javac, jar and other tools
alanb
parents:
14786
diff
changeset
|
76 |
${COMPILEJAVA}${FILESEP}bin${FILESEP}javac ${TESTJAVACOPTS} ${TESTTOOLVMOPTS} \ |
5300 | 77 |
-d ${TESTCLASSES}${FILESEP} \ |
78 |
${TESTSRC}${FILESEP}${TEST}.java |
|
79 |
||
80 |
EXIT_STATUS=0 |
|
81 |
||
82 |
if [ "${NATIVE}" = "true" ] ; then |
|
83 |
echo "Testing native provider" |
|
14786
a9f61e0cbe61
8003890: corelibs test scripts should pass TESTVMOPTS
chegar
parents:
14342
diff
changeset
|
84 |
${TESTJAVA}${FILESEP}bin${FILESEP}java ${TESTVMOPTS} \ |
5300 | 85 |
-classpath ${TESTCLASSES} \ |
86 |
-Dsun.security.jgss.native=true \ |
|
87 |
${TEST} |
|
88 |
if [ $? != 0 ] ; then |
|
89 |
echo "Native provider fails" |
|
90 |
EXIT_STATUS=1 |
|
91 |
fi |
|
92 |
fi |
|
93 |
||
94 |
echo "Testing java provider" |
|
14786
a9f61e0cbe61
8003890: corelibs test scripts should pass TESTVMOPTS
chegar
parents:
14342
diff
changeset
|
95 |
${TESTJAVA}${FILESEP}bin${FILESEP}java ${TESTVMOPTS} \ |
5300 | 96 |
-classpath ${TESTCLASSES} \ |
97 |
-Djava.security.krb5.realm=R \ |
|
98 |
-Djava.security.krb5.kdc=127.0.0.1 \ |
|
99 |
${TEST} |
|
100 |
if [ $? != 0 ] ; then |
|
101 |
echo "Java provider fails" |
|
102 |
EXIT_STATUS=1 |
|
103 |
fi |
|
104 |
||
105 |
exit ${EXIT_STATUS} |