jdk/test/com/sun/jdi/PrivateTransportTest.sh
author ohair
Tue, 28 Dec 2010 15:53:50 -0800
changeset 7668 d4a77089c587
parent 5506 202f599c92aa
child 9018 29184ade5361
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: 2
diff changeset
     4
# Copyright (c) 2005, 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: 2
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
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       PrivateTransportTest.sh
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
#   @bug        6225664 6220618
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
#   @summary    Test for when private transport library outside jdk
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
#   @author     Kelly O'Hair
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
#   @run compile -g HelloWorld.java
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
#   @run shell PrivateTransportTest.sh
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
# Beginning of subroutines:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
status=1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
#Call this from anywhere to fail the test with an error message
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
# usage: fail "reason why the test failed"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
fail() 
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 { echo "The test failed :-("
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
   echo "$*" 1>&2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
   echo "exit status was $status"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
   exit $status
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 } #end of fail()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
#Call this from anywhere to pass the test with a message
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
# usage: pass "reason why the test passed if applicable"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
pass() 
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 { echo "The test passed!!!"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
   echo "$*" 1>&2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
   exit 0
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 } #end of pass()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
# end of subroutines
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
# The beginning of the script proper
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
TARGETCLASS="HelloWorld"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
if [ -z "${TESTJAVA}" ] ; then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
   # TESTJAVA is not set, so the test is running stand-alone.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
   # TESTJAVA holds the path to the root directory of the build of the JDK
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
   # to be tested.  That is, any java files run explicitly in this shell
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
   # should use TESTJAVA in the path to the java interpreter.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
   # So, we'll set this to the JDK spec'd on the command line.  If none
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
   # is given on the command line, tell the user that and use a default.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
   # THIS IS THE JDK BEING TESTED.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
   if [ -n "$1" ] ; then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
          TESTJAVA=$1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
      else
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
	  TESTJAVA=$JAVA_HOME
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
   fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
   TESTSRC=.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
   TESTCLASSES=.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
   #Deal with .class files:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
   ${TESTJAVA}/bin/javac -d ${TESTCLASSES} \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
            -classpath "${TESTCLASSES}" -g \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
            ${TARGETCLASS}.java
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
echo "JDK under test is: $TESTJAVA"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
# Get flags being sent to debuggee
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
DEBUGGEEFLAGS=
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
if [ -r $TESTCLASSES/@debuggeeVMOptions ] ; then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
   DEBUGGEEFLAGS=`cat $TESTCLASSES/@debuggeeVMOptions`
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
elif [ -r $TESTCLASSES/../@debuggeeVMOptions ] ; then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
   DEBUGGEEFLAGS=`cat $TESTCLASSES/../@debuggeeVMOptions`
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
# Figure out what the libarch path is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
os=`uname -s`
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
jreloc=${TESTJAVA}/jre
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
if [ ! -d ${jreloc} ] ; then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    jreloc=${TESTJAVA}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
libdir=${TESTCLASSES}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
case `uname -s` in 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
  SunOS)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    libarch=`uname -p`
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    d64=`echo "${DEBUGGEEFLAGS}" | fgrep -- -d64`
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    case `uname -p` in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
      sparc)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
	if [ "${d64}" != "" ] ; then
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
	    libarch=sparcv9
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
	fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
        ;;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
      i386)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
        if [ "${d64}" != "" ] ; then
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
	    libarch=amd64
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
	fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
        ;;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
      *)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
        echo "FAILURE:  Unknown uname -p: " `uname -p`
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
        exit 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
        ;;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
    esac
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
    libloc=${jreloc}/lib/${libarch}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    ;;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
  Linux)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    xx=`find ${jreloc}/lib -name libdt_socket.so`
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
    libloc=`dirname ${xx}`
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
    ;;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
  Windows*)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
    libloc=${jreloc}/bin
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
    sep=';'
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
    ;;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
  CYGWIN*)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
    libloc=${jreloc}/bin
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
    sep=':'
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
    # This is going onto PATH and cygwin needs the form
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    # /cygdrive/j/x..... for that.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
    libdir=`cygpath -u "$TESTCLASSES"`
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    ;;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
  *)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    echo "FAILURE:  Unknown uname -s: " `uname -s`
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
    exit 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
    ;;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
esac
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
# Create private transport library
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
echo "Setup private transport library by copying an existing one and renaming"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
private_transport=private_dt_socket
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
if [ -f ${libloc}/dt_socket.dll ] ; then
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
    fullpath=${libdir}/${private_transport}.dll
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
    rm -f ${fullpath}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    echo cp ${libloc}/dt_socket.dll ${fullpath}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
    cp ${libloc}/dt_socket.dll ${fullpath}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    # make sure we can find libraries in current directory
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
    PATH="${PATH}${sep}${libdir}"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    export PATH
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
    echo PATH=${PATH}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
elif [ -f ${libloc}/libdt_socket.so ] ; then
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
    fullpath=${libdir}/lib${private_transport}.so
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
    rm -f ${fullpath}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
    echo cp ${libloc}/libdt_socket.so ${fullpath}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    cp ${libloc}/libdt_socket.so ${fullpath}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
    # make sure we can find libraries in current directory
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
    if [ "${LD_LIBRARY_PATH}" = "" ] ; then
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        LD_LIBRARY_PATH=${libdir}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
    else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
        LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${libdir}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
    fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
    export LD_LIBRARY_PATH
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
    echo LD_LIBRARY_PATH=${LD_LIBRARY_PATH}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
else 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
    echo "cannot find dt_socket in ${libloc} for ${private_transport}"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
    fail "cannot find dt_socket in ${libloc} for ${private_transport}"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
CP="-classpath \"${TESTCLASSES}\""
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
DEBUGGEEFLAGS="$DEBUGGEEFLAGS -agentlib:jdwp=transport=${private_transport},server=y,suspend=n"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
               
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
echo ${TESTJAVA}/bin/java ${DEBUGGEEFLAGS} ${CP} ${TARGETCLASS}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
eval ${TESTJAVA}/bin/java ${DEBUGGEEFLAGS} ${CP} ${TARGETCLASS}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
status=$?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
echo "test status for ${DEBUGGERFLAGS} was: $status"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
if [ $status -ne 0 ] ; then 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
    fail "unspecified test failure"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
    exit 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
pass "found private transport library"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
exit 0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192