blob: b68a28cd8487e8e261f6b3188772ba793918643b [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001#
2# Copyright (c) 2007 Sun Microsystems, Inc. All Rights Reserved.
3# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4#
5# This code is free software; you can redistribute it and/or modify it
6# under the terms of the GNU General Public License version 2 only, as
7# published by the Free Software Foundation.
8#
9# This code is distributed in the hope that it will be useful, but WITHOUT
10# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12# version 2 for more details (a copy is included in the LICENSE file that
13# accompanied this code).
14#
15# You should have received a copy of the GNU General Public License version
16# 2 along with this work; if not, write to the Free Software Foundation,
17# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18#
19# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
20# CA 95054 USA or visit www.sun.com if you need additional information or
21# have any questions.
22#
23#!/bin/sh
24#
25#
26#
27# This script is the actual launcher of each locale service provider test.
28# fooprovider.jar contains localized object providers and barprovider.jar
29# contains localized name providers. This way, we can test providers that
30# can relate to each other (such as, DateFormatSymbolsProvider and
31# TimeZoneNameProvider) separately.
32#
33# Parameters:
34# providersToTest: [foo|bar|foobar]
35# java class name: <class name>
36# providersInExtDir: [true|false]
37
38if [ "${TESTSRC}" = "" ]
39then
40 echo "TESTSRC not set. Test cannot execute. Failed."
41 exit 1
42fi
43echo "TESTSRC=${TESTSRC}"
44if [ "${TESTJAVA}" = "" ]
45then
46 echo "TESTJAVA not set. Test cannot execute. Failed."
47 exit 1
48fi
49echo "TESTJAVA=${TESTJAVA}"
50if [ "${TESTCLASSES}" = "" ]
51then
52 echo "TESTCLASSES not set. Test cannot execute. Failed."
53 exit 1
54fi
55echo "TESTCLASSES=${TESTCLASSES}"
56echo "CLASSPATH=${CLASSPATH}"
57
58# set platform-dependent variables
59OS=`uname -s`
60case "$OS" in
61 SunOS | Linux )
62 PS=":"
63 FS="/"
64 ;;
65 Windows* )
66 PS=";"
67 FS="\\"
68 ;;
69 * )
70 echo "Unrecognized system!"
71 exit 1;
72 ;;
73esac
74
75# set classpath and extension directory variables
76if [ -d ${TESTJAVA}${FS}lib${FS}ext ]
77then
78 EXTDIRS="${TESTJAVA}${FS}lib${FS}ext${PS}${TESTCLASSES}"
79else
80 EXTDIRS="${TESTJAVA}${FS}jre${FS}lib${FS}ext${PS}${TESTCLASSES}"
81fi
82
83case "$1" in
84 "foo" )
85 cp ${TESTSRC}${FS}fooprovider.jar ${TESTCLASSES}
86 CLASSPATHARG=".${PS}${TESTSRC}${PS}${TESTSRC}${FS}fooprovider.jar"
87 ;;
88 "bar" )
89 cp ${TESTSRC}${FS}barprovider.jar ${TESTCLASSES}
90 CLASSPATHARG=".${PS}${TESTSRC}${PS}${TESTSRC}${FS}barprovider.jar"
91 ;;
92 "foobar" )
93 cp ${TESTSRC}${FS}fooprovider.jar ${TESTCLASSES}
94 cp ${TESTSRC}${FS}barprovider.jar ${TESTCLASSES}
95 CLASSPATHARG=".${PS}${TESTSRC}${PS}${TESTSRC}${FS}fooprovider.jar${PS}${TESTSRC}${PS}${TESTSRC}${FS}barprovider.jar"
96 ;;
97esac
98
99# compile
100cp ${TESTSRC}${FS}ProviderTest.java .
101cp ${TESTSRC}${FS}$2.java .
102COMPILE="${TESTJAVA}${FS}bin${FS}javac -XDignore.symbol.file -d . -classpath ${CLASSPATHARG} $2.java"
103echo ${COMPILE}
104${COMPILE}
105result=$?
106
107if [ $result -eq 0 ]
108then
109 echo "Compilation of the test case was successful."
110else
111 echo "Compilation of the test case failed."
112 # Cleanup
113 rm -f ${TESTCLASSES}${FS}$2*.class
114 rm -f ${TESTCLASSES}${FS}fooprovider.jar
115 rm -f ${TESTCLASSES}${FS}barprovider.jar
116 exit $result
117fi
118
119# run
120if [ "$3" = "true" ]
121then
122 RUNCMD="${TESTJAVA}${FS}bin${FS}java -Djava.ext.dirs=${EXTDIRS} $2 "
123else
124 RUNCMD="${TESTJAVA}${FS}bin${FS}java -classpath ${CLASSPATHARG} $2 "
125fi
126
127echo ${RUNCMD}
128${RUNCMD}
129result=$?
130
131if [ $result -eq 0 ]
132then
133 echo "Execution successful"
134else
135 echo "Execution of the test case failed."
136fi
137
138# Cleanup
139rm -f ${TESTCLASSES}${FS}$2*.class
140rm -f ${TESTCLASSES}${FS}fooprovider.jar
141rm -f ${TESTCLASSES}${FS}barprovider.jar
142
143exit $result