jdk/test/com/sun/jdi/SuspendNoFlagTest.sh
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 2 90ce3da70b43
child 5506 202f599c92aa
permissions -rw-r--r--
Initial load
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
#!/bin/ksh -p
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
# Copyright 2003-2006 Sun Microsystems, Inc.  All Rights Reserved.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
# This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
# under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
# published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
# accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
# CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
# have any questions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
#   @test       SuspendNoFlagTest.sh
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
#   @bug        4914611
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
#   @summary    Test for JDWP: -agentlib:jdwp=suspend=n hanging
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
#   @author     Kelly O'Hair
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
#   Based on test/java/awt/TEMPLATE/AutomaticShellTest.sh
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
#   @run compile -g HelloWorld.java
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
#   @run shell/timeout=60 SuspendNoFlagTest.sh
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
# Beginning of subroutines:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
status=1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
#Call this from anywhere to fail the test with an error message
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
# usage: fail "reason why the test failed"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
fail() 
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 { echo "The test failed :-("
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
   echo "$*" 1>&2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
   echo "exit status was $status"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
   exit $status
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 } #end of fail()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
#Call this from anywhere to pass the test with a message
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
# usage: pass "reason why the test passed if applicable"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
pass() 
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 { echo "The test passed!!!"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
   echo "$*" 1>&2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
   exit 0
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 } #end of pass()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
# end of subroutines
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
# The beginning of the script proper
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
TARGETCLASS="HelloWorld"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
if [ -z "${TESTJAVA}" ] ; then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
   # TESTJAVA is not set, so the test is running stand-alone.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
   # TESTJAVA holds the path to the root directory of the build of the JDK
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
   # to be tested.  That is, any java files run explicitly in this shell
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
   # should use TESTJAVA in the path to the java interpreter.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
   # So, we'll set this to the JDK spec'd on the command line.  If none
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
   # is given on the command line, tell the user that and use a default.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
   # THIS IS THE JDK BEING TESTED.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
   if [ -n "$1" ] ; then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
          TESTJAVA=$1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
      else
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
	  TESTJAVA=$JAVA_HOME
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
   fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
   TESTSRC=.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
   TESTCLASSES=.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
   #Deal with .class files:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
   ${TESTJAVA}/bin/javac -d ${TESTCLASSES} \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
            -classpath "${TESTCLASSES}" -g \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
            ${TARGETCLASS}.java
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
echo "JDK under test is: $TESTJAVA"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
CP="-classpath \"${TESTCLASSES}\""
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
DEBUGEEFLAGS=
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
if [ -r $TESTCLASSES/@debuggeeVMOptions ] ; then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
   DEBUGEEFLAGS=`cat $TESTCLASSES/@debuggeeVMOptions`
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
elif [ -r $TESTCLASSES/../@debuggeeVMOptions ] ; then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
   DEBUGEEFLAGS=`cat $TESTCLASSES/../@debuggeeVMOptions`
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
DEBUGEEFLAGS="$DEBUGEEFLAGS -agentlib:jdwp=transport=dt_socket,server=y,suspend=n"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
java=java
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
echo ${TESTJAVA}/bin/$java ${DEBUGEEFLAGS} ${CP} ${TARGETCLASS}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
eval ${TESTJAVA}/bin/$java ${DEBUGEEFLAGS} ${CP} ${TARGETCLASS}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
status=$?
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
echo "test status was: $status"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
if [ $status -eq "0" ] ;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
   then pass "status = 0 and no timeout occured"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
   else fail "unspecified test failure (timed out or hung)"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
fi