jdk/test/sun/management/jmxremote/bootstrap/RmiSslBootstrapTest.sh
author mchung
Wed, 10 Aug 2016 15:51:25 -0700
changeset 40261 86a49ba76f52
parent 36928 71f5c0728dfc
child 43494 11801b2ff456
permissions -rw-r--r--
8136930: Simplify use of module-system options by custom launchers Reviewed-by: alanb, ksrini, henryjen, sundar
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
#
29975
38fe3dec1406 8077952: sun/management/jmxremote/bootstrap/RmiSslBootstrapTest.sh should be quarantined
darcy
parents: 24509
diff changeset
     2
# Copyright (c) 2003, 2015, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
# published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
# This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
# version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
# accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
# You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
# 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
#
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    19
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    20
# or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
# questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
# @test
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
# @bug     6528083
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
# @summary Test RMI Bootstrap with SSL
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
#
23031
995cf5c2eb55 7195249: Some jtreg tests use hard coded ports
sla
parents: 5506
diff changeset
    29
# @library /lib/testlibrary
30376
2ccf2cf7ea48 8078896: Add @modules as needed to the jdk_svc tests
ykantser
parents: 29975
diff changeset
    30
# @modules java.management/sun.management
2ccf2cf7ea48 8078896: Add @modules as needed to the jdk_svc tests
ykantser
parents: 29975
diff changeset
    31
#          java.management/sun.management.jmxremote
24509
5d02a6d25f78 8043520: Serviceability tests using @library failing with java.lang.NoClassDefFoundError
ykantser
parents: 23031
diff changeset
    32
# @build jdk.testlibrary.* TestLogger Utils RmiBootstrapTest
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
# @run shell/timeout=300  RmiSslBootstrapTest.sh
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
# Define the Java class test name
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
TESTCLASS="RmiBootstrapTest"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
export TESTCLASS
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
# Source in utility shell script to generate and remove .properties and .acl files
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
. ${TESTSRC}/GeneratePropertyPassword.sh
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
generatePropertyPasswordFiles `ls ${TESTSRC}/*_ssltest*.in`
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
rm -rf ${TESTCLASSES}/ssl
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
mkdir -p ${TESTCLASSES}/ssl
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
cp -rf ${TESTSRC}/ssl/*store ${TESTCLASSES}/ssl 
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
chmod -R 777 ${TESTCLASSES}/ssl
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
DEBUGOPTIONS=""
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
export DEBUGOPTIONS
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
40261
86a49ba76f52 8136930: Simplify use of module-system options by custom launchers
mchung
parents: 36928
diff changeset
    52
EXTRAOPTIONS="--add-exports java.management/sun.management=ALL-UNNAMED \
86a49ba76f52 8136930: Simplify use of module-system options by custom launchers
mchung
parents: 36928
diff changeset
    53
 --add-exports java.management/sun.management.jmxremote=ALL-UNNAMED"
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31715
diff changeset
    54
export EXTRAOPTIONS
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31715
diff changeset
    55
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
# Call the common generic test
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
echo -------------------------------------------------------------
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
echo Launching test for `basename $0 .sh`
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
echo -------------------------------------------------------------
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 31715
diff changeset
    61
sh ${TESTSRC}/../RunTest.sh ${DEBUGOPTIONS} ${EXTRAOPTIONS} ${TESTCLASS} \
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    ${TESTCLASSES}/management_ssltest*.properties
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
result=$?
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
restoreFilePermissions `ls ${TESTSRC}/*_ssltest*.in`
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
exit $result