jdk/test/java/util/PluggableLocale/ExecTest.sh
author alanb
Fri, 11 Jan 2013 20:19:55 +0000
changeset 15254 3997a6f357cb
parent 14786 a9f61e0cbe61
child 17933 b18cda672b79
permissions -rw-r--r--
8005978: shell tests need to use the $COMPILEJDK for javac, jar and other tools Reviewed-by: chegar
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 7668
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) 2007, 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.
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 7668
diff changeset
     4
#
2
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.
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 7668
diff changeset
     8
#
2
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).
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 7668
diff changeset
    14
#
2
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.
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 7668
diff changeset
    18
#
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4662
diff changeset
    19
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4662
diff changeset
    20
# or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4662
diff changeset
    21
# questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
#!/bin/sh
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
# This script is the actual launcher of each locale service provider test.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
# fooprovider.jar contains localized object providers and barprovider.jar
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
# contains localized name providers.  This way, we can test providers that
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 7668
diff changeset
    30
# can relate to each other (such as, DateFormatSymbolsProvider and
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
# TimeZoneNameProvider) separately.
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 7668
diff changeset
    32
#
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
# Parameters:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
#    providersToTest: [foo|bar|foobar]
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
#    java class name: <class name>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
#    providersInExtDir: [true|false]
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
if [ "${TESTSRC}" = "" ]
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
  echo "TESTSRC not set.  Test cannot execute.  Failed."
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
  exit 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
echo "TESTSRC=${TESTSRC}"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
if [ "${TESTJAVA}" = "" ]
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
  echo "TESTJAVA not set.  Test cannot execute.  Failed."
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
  exit 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
fi
15254
3997a6f357cb 8005978: shell tests need to use the $COMPILEJDK for javac, jar and other tools
alanb
parents: 14786
diff changeset
    49
if [ "${COMPILEJAVA}" = "" ]
3997a6f357cb 8005978: shell tests need to use the $COMPILEJDK for javac, jar and other tools
alanb
parents: 14786
diff changeset
    50
then
3997a6f357cb 8005978: shell tests need to use the $COMPILEJDK for javac, jar and other tools
alanb
parents: 14786
diff changeset
    51
  COMPILEJAVA="${TESTJAVA}"
3997a6f357cb 8005978: shell tests need to use the $COMPILEJDK for javac, jar and other tools
alanb
parents: 14786
diff changeset
    52
fi
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
echo "TESTJAVA=${TESTJAVA}"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
if [ "${TESTCLASSES}" = "" ]
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
  echo "TESTCLASSES not set.  Test cannot execute.  Failed."
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
  exit 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
echo "TESTCLASSES=${TESTCLASSES}"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
echo "CLASSPATH=${CLASSPATH}"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
# set platform-dependent variables
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
OS=`uname -s`
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
case "$OS" in
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 7668
diff changeset
    65
  SunOS | Linux | Darwin )
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    PS=":"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
    FS="/"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    ;;
4662
49b8cbe45e6a 6911108: These tests do not work with CYGWIN: java/util
ohair
parents: 2
diff changeset
    69
  Windows* | CYGWIN* )
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    PS=";"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    FS="\\"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    ;;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
  * )
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    echo "Unrecognized system!"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    exit 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    ;;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
esac
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
# set classpath and extension directory variables
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
if [ -d ${TESTJAVA}${FS}lib${FS}ext ]
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    EXTDIRS="${TESTJAVA}${FS}lib${FS}ext${PS}${TESTCLASSES}"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
else
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    EXTDIRS="${TESTJAVA}${FS}jre${FS}lib${FS}ext${PS}${TESTCLASSES}"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 7668
diff changeset
    87
case "$1" in
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
  "foo" )
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
    cp ${TESTSRC}${FS}fooprovider.jar ${TESTCLASSES}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    CLASSPATHARG=".${PS}${TESTSRC}${PS}${TESTSRC}${FS}fooprovider.jar"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    ;;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
  "bar" )
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    cp ${TESTSRC}${FS}barprovider.jar ${TESTCLASSES}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    CLASSPATHARG=".${PS}${TESTSRC}${PS}${TESTSRC}${FS}barprovider.jar"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    ;;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
  "foobar" )
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    cp ${TESTSRC}${FS}fooprovider.jar ${TESTCLASSES}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
    cp ${TESTSRC}${FS}barprovider.jar ${TESTCLASSES}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    CLASSPATHARG=".${PS}${TESTSRC}${PS}${TESTSRC}${FS}fooprovider.jar${PS}${TESTSRC}${PS}${TESTSRC}${FS}barprovider.jar"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    ;;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
esac
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 7668
diff changeset
   102
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
# compile
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
cp ${TESTSRC}${FS}ProviderTest.java .
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
cp ${TESTSRC}${FS}$2.java .
15254
3997a6f357cb 8005978: shell tests need to use the $COMPILEJDK for javac, jar and other tools
alanb
parents: 14786
diff changeset
   106
COMPILE="${COMPILEJAVA}${FS}bin${FS}javac ${TESTJAVACOPTS} ${TESTTOOLVMOPTS} \
3997a6f357cb 8005978: shell tests need to use the $COMPILEJDK for javac, jar and other tools
alanb
parents: 14786
diff changeset
   107
    -XDignore.symbol.file -d . -classpath ${CLASSPATHARG} $2.java"
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
echo ${COMPILE}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
${COMPILE}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
result=$?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
if [ $result -eq 0 ]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
then
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
  echo "Compilation of the test case was successful."
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 7668
diff changeset
   115
else
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
  echo "Compilation of the test case failed."
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
  # Cleanup
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
  rm -f ${TESTCLASSES}${FS}$2*.class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
  rm -f ${TESTCLASSES}${FS}fooprovider.jar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
  rm -f ${TESTCLASSES}${FS}barprovider.jar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
  exit $result
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
# run
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
if [ "$3" = "true" ]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
then
14786
a9f61e0cbe61 8003890: corelibs test scripts should pass TESTVMOPTS
chegar
parents: 14342
diff changeset
   127
  RUNCMD="${TESTJAVA}${FS}bin${FS}java ${TESTVMOPTS} -Djava.ext.dirs=${EXTDIRS} $2 "
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
else
14786
a9f61e0cbe61 8003890: corelibs test scripts should pass TESTVMOPTS
chegar
parents: 14342
diff changeset
   129
  RUNCMD="${TESTJAVA}${FS}bin${FS}java ${TESTVMOPTS} -classpath ${CLASSPATHARG} $2 "
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
echo ${RUNCMD}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
${RUNCMD}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
result=$?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
if [ $result -eq 0 ]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
then
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
  echo "Execution successful"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
  echo "Execution of the test case failed."
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
# Cleanup
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
rm -f ${TESTCLASSES}${FS}$2*.class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
rm -f ${TESTCLASSES}${FS}fooprovider.jar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
rm -f ${TESTCLASSES}${FS}barprovider.jar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
exit $result