jdk/test/sun/tools/jconsole/ImmutableResourceTest.sh
author michaelm
Tue, 06 Mar 2012 20:34:38 +0000
changeset 12047 320a714614e9
parent 5506 202f599c92aa
child 14342 8435a30053c1
permissions -rw-r--r--
7113349: Initial changeset for Macosx port to jdk Reviewed-by: jjh, alanb, dholmes, anthony, ohrstrom, ksrini, jrose, weijun, smarks Contributed-by: Alan Bateman <alan.bateman@oracle.com>, Alexander Potochkin <alexander.potochkin@oracle.com>, Alexander Zuev <alexander.zuev@oracle.com>, Andrew Brygin <andrew.brygin@oracle.com>, Artem Ananiev <artem.ananiev@oracle.com>, Alex Strange <astrange@apple.com>, Bino George <bino@apple.com>, Christine Lu <christine.lu@oracle.com>, David Katleman <david.katleman@oracle.com>, David Durrence <david_durrence@apple.com>, Dmitry Cherepanov <dmitry.cherepanov@oracle.com>, Greg Lewis <glewis@eyesbeyond.com>, Kevin Miller <kevin_m_miller@apple.com>, Kurt Miller <kurt@intricatesoftware.com>, Landon Fuller <landonf@plausiblelabs.com>, Leonid Romanov <leonid.romanov@oracle.com>, Loefty Walkowiak <loefty@apple.com>, Mark Reinhold <mark.reinhold@oracle.com>, Naoto Sato <naoto.sato@oracle.com>, Philip Race <philip.race@oracle.com>, Roger Hoover <rhoover@apple.com>, Scott Kovatch <scott.kovatch@oracle.com>, Sergey ByloKhov <sergey.bylokhov@oracle.com>, Mike Swingler <swingler@apple.com>, Tomas Hurka <tomas.hurka@oracle.com>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
#
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     2
# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
2
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
#
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    19
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    20
# or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
# questions.
2
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"
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
    35
fail()
2
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"
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
    44
pass()
2
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
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
    56
   SunOS | Linux | Darwin )
2
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
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
    83
          TESTJAVA=$JAVA_HOME
2
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