author | michaelm |
Tue, 06 Mar 2012 20:34:38 +0000 | |
changeset 12047 | 320a714614e9 |
parent 5506 | 202f599c92aa |
child 14342 | 8435a30053c1 |
permissions | -rw-r--r-- |
5300 | 1 |
# |
5506 | 2 |
# Copyright (c) 2009, 2010, 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 |
||
46 |
NATIVE=false |
|
47 |
||
48 |
# set platform-dependent variables |
|
49 |
OS=`uname -s` |
|
50 |
case "$OS" in |
|
12047
320a714614e9
7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
5506
diff
changeset
|
51 |
SunOS | Linux ) |
5300 | 52 |
PATHSEP=":" |
53 |
FILESEP="/" |
|
54 |
NATIVE=true |
|
55 |
;; |
|
12047
320a714614e9
7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
5506
diff
changeset
|
56 |
Darwin ) |
5300 | 57 |
PATHSEP=":" |
58 |
FILESEP="/" |
|
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 |
||
76 |
${TESTJAVA}${FILESEP}bin${FILESEP}javac \ |
|
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" |
|
84 |
${TESTJAVA}${FILESEP}bin${FILESEP}java \ |
|
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" |
|
95 |
${TESTJAVA}${FILESEP}bin${FILESEP}java \ |
|
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} |