jdk/test/com/sun/jdi/JITDebug.sh
author ohair
Tue, 28 Dec 2010 15:53:50 -0800
changeset 7668 d4a77089c587
parent 5506 202f599c92aa
child 12047 320a714614e9
permissions -rw-r--r--
6962318: Update copyright year Reviewed-by: xdono
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
#
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4335
diff changeset
     4
# Copyright (c) 2002, 2006, Oracle and/or its affiliates. All rights reserved.
2
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
#
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4335
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4335
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4335
diff changeset
    23
# questions.
2
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       JITDebug.sh 1.7 03/09/05
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
#   @bug        4291701 4376819 4422312 4522770 4913748
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
#   @summary    Test JIT debugging - assure that launching on
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
#               uncaught exception works
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
#   @author     Tim Bell
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
#   Based on test/java/awt/TEMPLATE/AutomaticShellTest.sh
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
#   @run build TestScaffold VMConnection TargetListener TargetAdapter
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
#   @run compile -g JITDebug.java
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
#   @run shell JITDebug.sh
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
# Beginning of subroutines:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
status=1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
#Call this from anywhere to fail the test with an error message
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
# usage: fail "reason why the test failed"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
fail() 
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 { echo "The test failed :-("
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
   echo "$*" 1>&2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
   echo "exit status was $status"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
   exit $status
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 } #end of fail()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
#Call this from anywhere to pass the test with a message
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
# usage: pass "reason why the test passed if applicable"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
pass() 
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 { echo "The test passed!!!"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
   echo "$*" 1>&2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
   exit 0
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 } #end of pass()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
# end of subroutines
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
# The beginning of the script proper
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
OS=`uname -s`
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
export TRANSPORT_METHOD
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
case "$OS" in
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
   SunOS | Linux )
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
      PATHSEP=":"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
      TRANSPORT_METHOD=dt_socket
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
      ;;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
   Windows* | CYGWIN*)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
      PATHSEP=";"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
      TRANSPORT_METHOD=dt_shmem
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
      ;;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
   # catch all other OSs
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
   * )
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
      echo "Unrecognized system!  $OS"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
      fail "Unrecognized system!  $OS"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
      ;;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
esac
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
# Want this test to run standalone as well as in the harness, so do the 
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
#  following to copy the test's directory into the harness's scratch directory 
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
#  and set all appropriate variables:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
if [ -z "${TESTJAVA}" ] ; then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
   # TESTJAVA is not set, so the test is running stand-alone.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
   # TESTJAVA holds the path to the root directory of the build of the JDK
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
   # to be tested.  That is, any java files run explicitly in this shell
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
   # should use TESTJAVA in the path to the java interpreter.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
   # So, we'll set this to the JDK spec'd on the command line.  If none
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
   # is given on the command line, tell the user that and use a default.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
   # THIS IS THE JDK BEING TESTED.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
   if [ -n "$1" ] ; then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
          TESTJAVA=$1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
      else
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
	  TESTJAVA=$JAVA_HOME
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
   fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
   TESTSRC=.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
   TESTCLASSES=.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
   #Deal with .class files:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
   #if running standalone (no test harness of any kind), compile the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
   #support files and the test case
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
   ${TESTJAVA}/bin/javac -d ${TESTCLASSES} \
4335
365eb4449319 6904183: Fix jdk/test/com/sun/jdi tests to run with -samevm
ohair
parents: 2
diff changeset
   106
            -classpath "$TESTJAVA/lib/tools.jar${PATHSEP}${TESTSRC}" \
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
            TestScaffold.java VMConnection.java TargetListener.java TargetAdapter.java
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
   ${TESTJAVA}/bin/javac  -d ${TESTCLASSES} \
4335
365eb4449319 6904183: Fix jdk/test/com/sun/jdi tests to run with -samevm
ohair
parents: 2
diff changeset
   109
            -classpath "$TESTJAVA/lib/tools.jar${PATHSEP}${TESTSRC}" -g \
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
            JITDebug.java
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
echo "JDK under test is: $TESTJAVA"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
CLASSPATH="$TESTJAVA/lib/tools.jar${PATHSEP}${TESTCLASSES}"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
export CLASSPATH
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
CP="-classpath \"${CLASSPATH}\""
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
TARGETCLASS=JITDebug
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
RUNFLAGS='-showversion -DTRANSPORT_METHOD="${TRANSPORT_METHOD}"'
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
RUNFLAGS="-Dtest.classes=${TESTCLASSES} ${RUNFLAGS}"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
echo ""
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
echo "Environment variable definitions are:"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
echo ""
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
env | sort
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
echo ""
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
echo ""
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
echo "Starting test:"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
echo ${TESTJAVA}/bin/java -DHANGINGJAVA_DEB ${RUNFLAGS} ${CP} ${TARGETCLASS}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
eval ${TESTJAVA}/bin/java -DHANGINGJAVA_DEB ${RUNFLAGS} ${CP} ${TARGETCLASS}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
status=$?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
if [ $status -ne "0" ];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
then fail "test failed for class=$TARGETCLASS!"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
# pass or fail the test based on status of the command
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
if [ $status -eq "0" ];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
   then pass ""
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
   else fail "unspecified test failure"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
fi