jdk-24/test/jdk/java/rmi/reliability
Sean Mullan db85090553 8338411: Implement JEP 486: Permanently Disable the Security Manager
Co-authored-by: Sean Mullan <mullan@openjdk.org>
Co-authored-by: Alan Bateman <alanb@openjdk.org>
Co-authored-by: Weijun Wang <weijun@openjdk.org>
Co-authored-by: Aleksei Efimov <aefimov@openjdk.org>
Co-authored-by: Brian Burkhalter <bpb@openjdk.org>
Co-authored-by: Daniel Fuchs <dfuchs@openjdk.org>
Co-authored-by: Harshitha Onkar <honkar@openjdk.org>
Co-authored-by: Joe Wang <joehw@openjdk.org>
Co-authored-by: Jorn Vernee <jvernee@openjdk.org>
Co-authored-by: Justin Lu <jlu@openjdk.org>
Co-authored-by: Kevin Walls <kevinw@openjdk.org>
Co-authored-by: Lance Andersen <lancea@openjdk.org>
Co-authored-by: Naoto Sato <naoto@openjdk.org>
Co-authored-by: Roger Riggs <rriggs@openjdk.org>
Co-authored-by: Brent Christian <bchristi@openjdk.org>
Co-authored-by: Stuart Marks <smarks@openjdk.org>
Co-authored-by: Ian Graves <igraves@openjdk.org>
Co-authored-by: Phil Race <prr@openjdk.org>
Co-authored-by: Erik Gahlin <egahlin@openjdk.org>
Co-authored-by: Jaikiran Pai <jpai@openjdk.org>
Reviewed-by: kevinw, aivanov, rriggs, lancea, coffeys, dfuchs, ihse, erikj, cjplummer, coleenp, naoto, mchung, prr, weijun, joehw, azvegint, psadhukhan, bchristi, sundar, attila
2024-11-12 17:16:15 +00:00
..
benchmark/bench 8338411: Implement JEP 486: Permanently Disable the Security Manager 2024-11-12 17:16:15 +00:00
juicer 8338411: Implement JEP 486: Permanently Disable the Security Manager 2024-11-12 17:16:15 +00:00
scripts 8187443: Forest Consolidation: Move files to unified layout 2017-09-12 19:03:39 +02:00
launch_reliability.ksh 8244224: Implementation of JEP 381: Remove the Solaris and SPARC Ports 2020-05-20 17:33:37 -07:00
README 8187443: Forest Consolidation: Move files to unified layout 2017-09-12 19:03:39 +02:00

This directory contains the juicer and two benchmark tests.  
Taken together, these tests form the RMI reliability 
suite.  These three tests each function in two modes:

  1) as short running JTREG regression tests

  2) as long running RMI reliability tests

In addition, the two benchmark tests serves a third role:

  3) as RMI and Serialization Performance tests run by
     the Performance Group (http://perfwww.ireland/)

All of the ksh scripts under this directory are used 
to run the RMI reliability suite and are not used
to run the JTREG regression tests.  The one exception
to this is the scripts/create_benchmark_jars.ksh
script which creates the JAR files for the benchmarks
that are transfered to the Performance Group.

------------------------------------------------------

The remainder of this file describes how to run the 
RMI reliability suite:

The launch_reliability.ksh script will build the
reliability suite, execute it, and clean up after itself.
It can be run from any directory with the proper 
command line args. 

For example, to run for 72 hours:

export SUITE_DIR=<path to this directory>
export JDK_DIR=<path to JDK being tested>
export RES_DIR=<path to results dir for this run>
export WORK_DIR=<path to temp working dir for this run>
export VMOPTS="-server -showversion"

rm -rf $RES_DIR $WORK_DIR
mkdir -p $RES_DIR $WORK_DIR

${SUITE_DIR}/launch_reliability.ksh \
        $JDK_DIR \
        $WORK_DIR \
        $RES_DIR \
        ksh \
        $SUITE_DIR \
        72 \
        $VMOPTS >> $RES_DIR/launch_reliability.log 2>&1 &