jdk/test/java/util/Currency/PropertiesTest.sh
author naoto
Mon, 26 Oct 2015 19:49:22 +0530
changeset 33404 4d65de89ebde
parent 29524 2dbceeab4b8b
child 34431 0b471e6f3fce
permissions -rw-r--r--
8061287: Update i18n tests to remove references of jre dir Summary: Updated PropertiesTest.sh to remove references of jre dir. Reviewed-by: naoto, peytoia Contributed-by: Rachna Goel <rachna.goel@oracle.com>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
#!/bin/sh
14697
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
     2
29524
2dbceeab4b8b 8074350: Support ISO 4217 "Current funds codes" table (A.2)
naoto
parents: 26189
diff changeset
     3
# Copyright (c) 2007, 2015, Oracle and/or its affiliates. All rights reserved.
14697
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
     4
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
     5
#
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
     6
# This code is free software; you can redistribute it and/or modify it
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
     7
# under the terms of the GNU General Public License version 2 only, as
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
     8
# published by the Free Software Foundation.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
#
14697
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    10
# This code is distributed in the hope that it will be useful, but WITHOUT
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    11
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    12
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    13
# version 2 for more details (a copy is included in the LICENSE file that
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    14
# accompanied this code).
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    15
#
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    16
# You should have received a copy of the GNU General Public License version
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    17
# 2 along with this work; if not, write to the Free Software Foundation,
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    18
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    19
#
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    20
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    21
# or visit www.oracle.com if you need additional information or have any
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    22
# questions.
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    23
#
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    24
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
# @test
29524
2dbceeab4b8b 8074350: Support ISO 4217 "Current funds codes" table (A.2)
naoto
parents: 26189
diff changeset
    26
# @bug 6332666 6863624 7180362 8003846 8074350 8074351
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
# @summary tests the capability of replacing the currency data with user
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
#     specified currency properties file
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
# @build PropertiesTest
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
# @run shell/timeout=600 PropertiesTest.sh
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
if [ "${TESTSRC}" = "" ]
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
  echo "TESTSRC not set.  Test cannot execute.  Failed."
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
  exit 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
echo "TESTSRC=${TESTSRC}"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
if [ "${TESTJAVA}" = "" ]
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
  echo "TESTJAVA 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 "TESTJAVA=${TESTJAVA}"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
if [ "${TESTCLASSES}" = "" ]
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
  echo "TESTCLASSES 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
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
echo "TESTCLASSES=${TESTCLASSES}"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
echo "CLASSPATH=${CLASSPATH}"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
# set platform-dependent variables
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
OS=`uname -s`
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
case "$OS" in
22602
0d9a07b0d7e9 8028537: PPC64: Updated the JDK regression tests to run on AIX
simonis
parents: 18539
diff changeset
    55
  SunOS | Linux | Darwin | AIX )
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
    PS=":"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    FS="/"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    ;;
18539
cc30fa6fcf7c 6863624: java/util/Currency/PropertiesTest.sh writable check is incorrect
naoto
parents: 14786
diff changeset
    59
  Windows* )
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    PS=";"
14697
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    61
    FS="/"
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    ;;
18539
cc30fa6fcf7c 6863624: java/util/Currency/PropertiesTest.sh writable check is incorrect
naoto
parents: 14786
diff changeset
    63
  CYGWIN* )
cc30fa6fcf7c 6863624: java/util/Currency/PropertiesTest.sh writable check is incorrect
naoto
parents: 14786
diff changeset
    64
    PS=";"
cc30fa6fcf7c 6863624: java/util/Currency/PropertiesTest.sh writable check is incorrect
naoto
parents: 14786
diff changeset
    65
    FS="/"
cc30fa6fcf7c 6863624: java/util/Currency/PropertiesTest.sh writable check is incorrect
naoto
parents: 14786
diff changeset
    66
    TESTJAVA=`cygpath -u ${TESTJAVA}`
cc30fa6fcf7c 6863624: java/util/Currency/PropertiesTest.sh writable check is incorrect
naoto
parents: 14786
diff changeset
    67
    ;;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
  * )
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    echo "Unrecognized system!"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    exit 1;
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
14697
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    74
failures=0
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
14697
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    76
run() {
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    77
    echo ''
14786
a9f61e0cbe61 8003890: corelibs test scripts should pass TESTVMOPTS
chegar
parents: 14697
diff changeset
    78
    sh -xc "${TESTJAVA}${FS}bin${FS}java ${TESTVMOPTS} -cp ${TESTCLASSES} $*" 2>&1
14697
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    79
    if [ $? != 0 ]; then failures=`expr $failures + 1`; fi
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    80
}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
14697
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    82
PROPS=${TESTSRC}${FS}currency.properties
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    83
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    84
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    85
# Dump built-in currency data
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
14697
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    87
run PropertiesTest -d dump1
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    88
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    89
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    90
# Dump built-in currency data + overrides in properties file specified
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    91
# by system property.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
14697
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    93
run -Djava.util.currency.data=${PROPS} PropertiesTest -d dump2
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    94
run PropertiesTest -c dump1 dump2 ${PROPS}
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    95
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    96
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    97
# Dump built-in currency data + overrides in properties file copied into
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    98
# JRE image.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
25994
01dbe01af8e5 8055253: test/java/util/Currency/PropertiesTest.sh modifies the test JDK
martin
parents: 22602
diff changeset
   100
# Make a private copy of the jdk so we can write to the properties file location
01dbe01af8e5 8055253: test/java/util/Currency/PropertiesTest.sh modifies the test JDK
martin
parents: 22602
diff changeset
   101
# without disturbing other users, including concurrently executing tests.
01dbe01af8e5 8055253: test/java/util/Currency/PropertiesTest.sh modifies the test JDK
martin
parents: 22602
diff changeset
   102
WRITABLEJDK=.${FS}testjava
26189
1868b96bbc6e 8055675: java/util/Currency/PropertiesTest.sh fails on OS X after JDK-8055253
martin
parents: 25994
diff changeset
   103
cp -H -R $TESTJAVA $WRITABLEJDK || exit 1
33404
4d65de89ebde 8061287: Update i18n tests to remove references of jre dir
naoto
parents: 29524
diff changeset
   104
PROPLOCATION=${WRITABLEJDK}${FS}lib
26189
1868b96bbc6e 8055675: java/util/Currency/PropertiesTest.sh fails on OS X after JDK-8055253
martin
parents: 25994
diff changeset
   105
chmod -R +w $WRITABLEJDK || exit 1
1868b96bbc6e 8055675: java/util/Currency/PropertiesTest.sh fails on OS X after JDK-8055253
martin
parents: 25994
diff changeset
   106
cp ${PROPS} $PROPLOCATION || exit 1
18539
cc30fa6fcf7c 6863624: java/util/Currency/PropertiesTest.sh writable check is incorrect
naoto
parents: 14786
diff changeset
   107
echo "Properties location: ${PROPLOCATION}"
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
# run
14697
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
   110
echo ''
14786
a9f61e0cbe61 8003890: corelibs test scripts should pass TESTVMOPTS
chegar
parents: 14697
diff changeset
   111
sh -xc "${WRITABLEJDK}${FS}bin${FS}java ${TESTVMOPTS} -cp ${TESTCLASSES} PropertiesTest -d dump3"
14697
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
   112
if [ $? != 0 ]; then failures=`expr $failures + 1`; fi
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
# Cleanup
25994
01dbe01af8e5 8055253: test/java/util/Currency/PropertiesTest.sh modifies the test JDK
martin
parents: 22602
diff changeset
   115
rm -rf $WRITABLEJDK
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
14697
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
   117
# compare the two dump files
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
   118
run PropertiesTest -c dump1 dump3 ${PROPS}
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
   119
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
   120
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
   121
# Results
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
   122
echo ''
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
   123
if [ $failures -gt 0 ];
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
   124
  then echo "$failures tests failed";
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
   125
  else echo "All tests passed"; fi
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
   126
exit $failures