jdk/test/com/sun/jdi/ImmutableResourceTest.sh
author simonis
Fri, 17 Jan 2014 21:54:30 +0100
changeset 22602 0d9a07b0d7e9
parent 14342 8435a30053c1
child 28760 b83d51c77b31
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
#
14342
8435a30053c1 7197491: update copyright year to match last edit in jdk8 jdk repository
alanb
parents: 12047
diff changeset
     2
# Copyright (c) 2005, 2012, 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
#   @author     Tim Bell
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
#   @run shell ImmutableResourceTest.sh
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
#
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
    31
#
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
# Beginning of subroutines:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
status=1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
#Call this from anywhere to fail the test with an error message
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
# usage: fail "reason why the test failed"
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
    38
fail()
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 { echo "The test failed :-("
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
   echo "$*" 1>&2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
   echo "exit status was $status"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
   exit $status
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 } #end of fail()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
#Call this from anywhere to pass the test with a message
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
# usage: pass "reason why the test passed if applicable"
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
    47
pass()
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 { echo "The test passed!!!"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
   echo "$*" 1>&2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
   exit 0
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 } #end of pass()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
# end of subroutines
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
# The beginning of the script proper
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
OS=`uname -s`
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
case "$OS" in
22602
0d9a07b0d7e9 8028537: PPC64: Updated the JDK regression tests to run on AIX
simonis
parents: 14342
diff changeset
    59
   SunOS | Linux | Darwin | AIX )
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
      PATHSEP=":"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
      ;;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
   Windows* | CYGWIN*)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
      PATHSEP=";"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
      ;;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
   # catch all other OSs
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
   * )
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
      echo "Unrecognized system!  $OS"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
      fail "Unrecognized system!  $OS"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
      ;;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
esac
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
TARGETCLASS="ImmutableResourceTest"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
if [ -z "${TESTJAVA}" ] ; then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
   # TESTJAVA is not set, so the test is running stand-alone.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
   # TESTJAVA holds the path to the root directory of the build of the JDK
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
   # to be tested.  That is, any java files run explicitly in this shell
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
   # should use TESTJAVA in the path to the java interpreter.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
   # So, we'll set this to the JDK spec'd on the command line.  If none
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
   # is given on the command line, tell the user that and use a default.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
   # THIS IS THE JDK BEING TESTED.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
   if [ -n "$1" ] ; then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
          TESTJAVA=$1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
      else
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 5506
diff changeset
    86
          TESTJAVA=$JAVA_HOME
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
   fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
   TESTSRC=.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
   TESTCLASSES=.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
   #Deal with .class files:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
echo "JDK under test is: $TESTJAVA"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
CP="-classpath ${TESTCLASSES}${PATHSEP}${TESTJAVA}/lib/tools.jar"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
# Compile the test class using the classpath we need:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
env
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
set -vx
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
#Compile.  tools.jar is required on the classpath.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
${TESTJAVA}/bin/javac -d "${TESTCLASSES}" ${CP} -g \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
                         "${TESTSRC}"/"${TARGETCLASS}".java
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
#Run the test class, again with the classpath we need:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
${TESTJAVA}/bin/java ${CP} ${TARGETCLASS}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
status=$?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
echo "test status was: $status"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
if [ $status -eq "0" ];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
   then pass ""
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
   else fail "unspecified test failure"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
fi