author | alanb |
Fri, 11 Jan 2013 20:19:55 +0000 | |
changeset 15254 | 3997a6f357cb |
parent 14786 | a9f61e0cbe61 |
child 17435 | ec797e955dca |
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 |
|
12047
320a714614e9
7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
5506
diff
changeset
|
55 |
SunOS | Linux ) |
5300 | 56 |
PATHSEP=":" |
57 |
FILESEP="/" |
|
58 |
NATIVE=true |
|
59 |
;; |
|
12047
320a714614e9
7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
5506
diff
changeset
|
60 |
Darwin ) |
5300 | 61 |
PATHSEP=":" |
62 |
FILESEP="/" |
|
63 |
;; |
|
64 |
CYGWIN* ) |
|
65 |
PATHSEP=";" |
|
66 |
FILESEP="/" |
|
67 |
;; |
|
68 |
Windows* ) |
|
69 |
PATHSEP=";" |
|
70 |
FILESEP="\\" |
|
71 |
;; |
|
72 |
* ) |
|
73 |
echo "Unrecognized system!" |
|
74 |
exit 1; |
|
75 |
;; |
|
76 |
esac |
|
77 |
||
78 |
TEST=Krb5NameEquals |
|
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 | 81 |
-d ${TESTCLASSES}${FILESEP} \ |
82 |
${TESTSRC}${FILESEP}${TEST}.java |
|
83 |
||
84 |
EXIT_STATUS=0 |
|
85 |
||
86 |
if [ "${NATIVE}" = "true" ] ; then |
|
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 | 89 |
-classpath ${TESTCLASSES} \ |
90 |
-Dsun.security.jgss.native=true \ |
|
91 |
${TEST} |
|
92 |
if [ $? != 0 ] ; then |
|
93 |
echo "Native provider fails" |
|
94 |
EXIT_STATUS=1 |
|
95 |
fi |
|
96 |
fi |
|
97 |
||
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 | 100 |
-classpath ${TESTCLASSES} \ |
101 |
-Djava.security.krb5.realm=R \ |
|
102 |
-Djava.security.krb5.kdc=127.0.0.1 \ |
|
103 |
${TEST} |
|
104 |
if [ $? != 0 ] ; then |
|
105 |
echo "Java provider fails" |
|
106 |
EXIT_STATUS=1 |
|
107 |
fi |
|
108 |
||
109 |
exit ${EXIT_STATUS} |