blob: fc899fd1c296e27ae35885c26180b76837f0738a [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001#!/bin/sh
2
3#
4# Copyright 2006-2007 Sun Microsystems, Inc. All Rights Reserved.
5# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6#
7# This code is free software; you can redistribute it and/or modify it
8# under the terms of the GNU General Public License version 2 only, as
9# published by the Free Software Foundation.
10#
11# This code is distributed in the hope that it will be useful, but WITHOUT
12# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14# version 2 for more details (a copy is included in the LICENSE file that
15# accompanied this code).
16#
17# You should have received a copy of the GNU General Public License version
18# 2 along with this work; if not, write to the Free Software Foundation,
19# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20#
21# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
22# CA 95054 USA or visit www.sun.com if you need additional information or
23# have any questions.
24#
25
26# @test
27# @bug 6457422
28# @run shell RSAEncryptDecrypt.sh
29# @summary Confirm that plaintext can be encrypted and then decrypted using the
30# RSA cipher in the SunMSCAPI crypto provider. NOTE: The RSA cipher is
31# absent from the SunMSCAPI provider in OpenJDK builds.
32#
33# Run only on non-64-bit Windows platform.
34
35# set a few environment variables so that the shell-script can run stand-alone
36# in the source directory
37if [ "${TESTSRC}" = "" ] ; then
38 TESTSRC="."
39fi
40
41if [ "${TESTCLASSES}" = "" ] ; then
42 TESTCLASSES="."
43fi
44
45if [ "${TESTJAVA}" = "" ] ; then
46 echo "TESTJAVA not set. Test cannot execute."
47 echo "FAILED!!!"
48 exit 1
49fi
50
51
52OS=`uname -s`
53case "$OS" in
54 Windows* | CYGWIN* )
55
56 #
57 # Workaround for 6449799
58 #
59 if [ "${SystemDrive}" = "" ]; then
60 SystemRoot="`dosname "${SystemRoot}"`"
61 export SystemRoot
62 SystemDrive="`echo ${SystemRoot} | cut -d'/' -f1`"
63 export SystemDrive
64 fi
65
66 # 'uname -m' does not give us enough information -
67 # should rely on $PROCESSOR_IDENTIFIER (as is done in
68 # Defs-windows.gmk), but JTREG does not pass this env variable
69 # when executing a shell script.
70 #
71 # execute test program - rely on it to exit if platform
72 # unsupported
73
74 ${TESTJAVA}/bin/javac -d . ${TESTSRC}\\RSAEncryptDecrypt.java
75 ${TESTJAVA}/bin/java RSAEncryptDecrypt
76 exit
77 ;;
78
79 * )
80 echo "This test is not intended for '$OS' - passing test"
81 exit 0
82 ;;
83esac
84