Deadlock2.sh revision 1153
2N/A#!/bin/sh
2N/A
2N/A#
2N/A# Copyright 2009 Sun Microsystems, Inc. All Rights Reserved.
2N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2N/A#
2N/A# This code is free software; you can redistribute it and/or modify it
2N/A# under the terms of the GNU General Public License version 2 only, as
2N/A# published by the Free Software Foundation.
2N/A#
2N/A# This code is distributed in the hope that it will be useful, but WITHOUT
2N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
2N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
2N/A# version 2 for more details (a copy is included in the LICENSE file that
2N/A# accompanied this code).
2N/A#
2N/A# You should have received a copy of the GNU General Public License version
2N/A# 2 along with this work; if not, write to the Free Software Foundation,
2N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
2N/A#
2N/A# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
2N/A# CA 95054 USA or visit www.sun.com if you need additional information or
2N/A# have any questions.
2N/A#
2N/A
2N/A
2N/A# @test
2N/A# @bug 6440846
2N/A# @ignore until 6203816 is dealt with.
2N/A# @summary make sure we do not deadlock between ExtClassLoader and AppClassLoader
2N/A# @author Valerie Peng
2N/A# @run shell/timeout=20 Deadlock2.sh
2N/A
2N/A# set a few environment variables so that the shell-script can run stand-alone
2N/A# in the source directory
2N/A
2N/Aif [ "${TESTSRC}" = "" ] ; then
2N/A TESTSRC="."
2N/Afi
2N/A
2N/Aif [ "${TESTCLASSES}" = "" ] ; then
2N/A TESTCLASSES="."
2N/Afi
2N/A
2N/Aif [ "${TESTJAVA}" = "" ] ; then
2N/A echo "TESTJAVA not set. Test cannot execute."
2N/A echo "FAILED!!!"
2N/A exit 1
2N/Afi
2N/A
2N/A# set platform-dependent variables
2N/AOS=`uname -s`
2N/Acase "$OS" in
2N/A SunOS )
2N/A PATHSEP=":"
2N/A FILESEP="/"
2N/A ;;
2N/A Linux )
2N/A PATHSEP=":"
2N/A FILESEP="/"
2N/A ;;
2N/A Windows* )
2N/A PATHSEP=";"
2N/A FILESEP="\\"
2N/A ;;
2N/A * )
2N/A echo "Unrecognized system!"
2N/A exit 1;
2N/A ;;
2N/Aesac
2N/A
2N/A# remove old class files
2N/Acd ${TESTCLASSES}
2N/Arm -f Deadlock2*.class
2N/Aif [ -d testlib ] ; then
2N/A rm -rf testlib
2N/Afi
2N/Acp -r ${TESTJAVA}${FILESEP}lib${FILESEP}ext testlib
2N/A
2N/A# compile and package the test program
2N/A${TESTJAVA}${FILESEP}bin${FILESEP}javac \
2N/A -d ${TESTCLASSES} \
2N/A ${TESTSRC}${FILESEP}CreateSerialized.java \
2N/A ${TESTSRC}${FILESEP}Deadlock2.java
2N/A
2N/A${TESTJAVA}${FILESEP}bin${FILESEP}jar \
2N/A -cvf testlib${FILESEP}Deadlock2.jar \
2N/A Deadlock2*.class
2N/A
2N/Arm Deadlock2*.class
2N/A
2N/A# create serialized object and run the test
2N/A${TESTJAVA}${FILESEP}bin${FILESEP}java CreateSerialized
2N/A${TESTJAVA}${FILESEP}bin${FILESEP}java -Djava.ext.dirs=${TESTCLASSES}${FILESEP}testlib Deadlock2
2N/ASTATUS=$?
2N/A
2N/A# clean up
2N/Arm object.tmp CreateSerialized.class
2N/Arm -rf testlib
2N/Aexit ${STATUS}
2N/A