jdk/test/sun/tools/jconsole/ImmutableResourceTest.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
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
# Copyright 2005-2007 Sun Microsystems, Inc.  All Rights Reserved.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
# published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
# This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
# version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
# accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
# You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
# 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
# CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
# have any questions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
#   @test
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
#   @bug        6287579
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
#   @summary    SubClasses of ListResourceBundle should fix getContents()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
#   @run shell ImmutableResourceTest.sh
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
# Beginning of subroutines:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
status=1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
#Call this from anywhere to fail the test with an error message
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
# usage: fail "reason why the test failed"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
fail() 
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 { echo "The test failed :-("
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
   echo "$*" 1>&2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
   echo "exit status was $status"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
   exit $status
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 } #end of fail()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
#Call this from anywhere to pass the test with a message
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
# usage: pass "reason why the test passed if applicable"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
pass() 
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 { echo "The test passed!!!"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
   echo "$*" 1>&2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
   exit 0
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 } #end of pass()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
# end of subroutines
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
# The beginning of the script proper
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
OS=`uname -s`
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
case "$OS" in
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
   SunOS | Linux )
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
      PATHSEP=":"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
      ;;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
   Windows* | CYGWIN*)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
      PATHSEP=";"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
      ;;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
   # catch all other OSs
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
   * )
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
      echo "Unrecognized system!  $OS"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
      fail "Unrecognized system!  $OS"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
      ;;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
esac
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
TARGETCLASS="ImmutableResourceTest"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
if [ -z "${TESTJAVA}" ] ; then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
   # TESTJAVA is not set, so the test is running stand-alone.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
   # TESTJAVA holds the path to the root directory of the build of the JDK
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
   # to be tested.  That is, any java files run explicitly in this shell
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
   # should use TESTJAVA in the path to the java interpreter.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
   # So, we'll set this to the JDK spec'd on the command line.  If none
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
   # is given on the command line, tell the user that and use a default.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
   # THIS IS THE JDK BEING TESTED.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
   if [ -n "$1" ] ; then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
          TESTJAVA=$1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
      else
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
	  TESTJAVA=$JAVA_HOME
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
   fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
   TESTSRC=.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
   TESTCLASSES=.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
   #Deal with .class files:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
echo "JDK under test is: $TESTJAVA"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
CP="-classpath ${TESTCLASSES}${PATHSEP}${TESTJAVA}/lib/jconsole.jar"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
# Compile the test class using the classpath we need:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
env
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
set -vx
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
#Compile.  jconsole.jar is required on the classpath.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
${TESTJAVA}/bin/javac -d "${TESTCLASSES}" ${CP} -g \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
                         "${TESTSRC}"/"${TARGETCLASS}".java
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
#Run the test class, again with the classpath we need:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
${TESTJAVA}/bin/java ${CP} ${TARGETCLASS}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
status=$?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
echo "test status was: $status"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
if [ $status -eq "0" ];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
   then pass ""
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
   else fail "unspecified test failure"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
fi