jdk/test/sun/tools/jconsole/ResourceCheckTest.sh
author simonis
Fri, 17 Jan 2014 21:54:30 +0100
changeset 22602 0d9a07b0d7e9
parent 19796 9e39f7e1506b
child 22965 78610fb00fff
permissions -rw-r--r--
8028537: PPC64: Updated the JDK regression tests to run on AIX Reviewed-by: alanb Contributed-by: luchsh@linux.vnet.ibm.com, spoole@linux.vnet.ibm.com, volker.simonis@gmail.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
#
19796
9e39f7e1506b 7172176: java/jconsole test/sun/tools/jconsole/ImmutableResourceTest.sh failing
egahlin
parents: 5506
diff changeset
     2
# Copyright (c) 2004, 2013, 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: 4347
diff changeset
    19
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4347
diff changeset
    20
# or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4347
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        5023573 5062569
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
#   @summary    jtreg test ResourceCheckTest.java must be
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
#               able to find jconsole.jar
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
#   @run shell ResourceCheckTest.sh
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
# Beginning of subroutines:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
status=1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
#Call this from anywhere to fail the test with an error message
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
# usage: fail "reason why the test failed"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
fail() 
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 { echo "The test failed :-("
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
   echo "$*" 1>&2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
   echo "exit status was $status"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
   exit $status
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 } #end of fail()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
#Call this from anywhere to pass the test with a message
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
# usage: pass "reason why the test passed if applicable"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
pass() 
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 { echo "The test passed!!!"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
   echo "$*" 1>&2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
   exit 0
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 } #end of pass()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
# end of subroutines
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
# The beginning of the script proper
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
OS=`uname -s`
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
case "$OS" in
22602
0d9a07b0d7e9 8028537: PPC64: Updated the JDK regression tests to run on AIX
simonis
parents: 19796
diff changeset
    57
   SunOS | Linux | Darwin | AIX)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
      PATHSEP=":"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
      ;;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
   Windows* | CYGWIN*)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
      PATHSEP=";"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
      ;;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
   # catch all other OSs
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
   * )
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
      echo "Unrecognized system!  $OS"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
      fail "Unrecognized system!  $OS"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
      ;;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
esac
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
TARGETCLASS="ResourceCheckTest"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
if [ -z "${TESTJAVA}" ] ; then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
   # TESTJAVA is not set, so the test is running stand-alone.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
   # TESTJAVA holds the path to the root directory of the build of the JDK
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
   # to be tested.  That is, any java files run explicitly in this shell
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
   # should use TESTJAVA in the path to the java interpreter.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
   # So, we'll set this to the JDK spec'd on the command line.  If none
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
   # is given on the command line, tell the user that and use a default.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
   # THIS IS THE JDK BEING TESTED.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
   if [ -n "$1" ] ; then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
          TESTJAVA=$1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
      else
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
	  TESTJAVA=$JAVA_HOME
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
   fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
   TESTSRC=.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
   TESTCLASSES=.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
   #Deal with .class files:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
echo "JDK under test is: $TESTJAVA"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
CP="-classpath ${TESTCLASSES}${PATHSEP}${TESTJAVA}/lib/jconsole.jar"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
# Compile the test class using the classpath we need:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
env
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
set -vx
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
#Compile.  jconsole.jar is required on the classpath.
4347
ab0a9f495844 6907177: Update jdk tests to remove unncessary -source and -target options
darcy
parents: 2
diff changeset
   101
${TESTJAVA}/bin/javac -d "${TESTCLASSES}" ${CP} -g \
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
                         "${TESTSRC}"/"${TARGETCLASS}".java
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
#Run the test class, again with the classpath we need:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
${TESTJAVA}/bin/java ${CP} ${TARGETCLASS}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
status=$?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
echo "test status was: $status"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
if [ $status -eq "0" ];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
   then pass ""
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
   else fail "unspecified test failure"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
fi