1#
2# Copyright (c) 2015, Oracle and/or its affiliates. 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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20# or visit www.oracle.com if you need additional information or have any
21# questions.
22#
23
24# @test
25# @summary Simple test case for ResourceBundle with modules;
26#          ResourceBundle.getBundle caller is in module named "test" and
27#          all resource bundles are in single module named "bundles".
28
29
30set -e
31
32if [ -z "$TESTJAVA" ]; then
33  if [ $# -lt 1 ]; then exit 1; fi
34  TESTJAVA="$1"; shift
35  COMPILEJAVA="${TESTJAVA}"
36  TESTSRC="`pwd`"
37  TESTCLASSES="`pwd`"
38fi
39
40JAVAC="$COMPILEJAVA/bin/javac"
41JAVA="$TESTJAVA/bin/java"
42
43rm -rf mods
44
45mkdir -p mods/test
46
47B=bundles
48mkdir -p mods/$B
49CLASSES="`find $TESTSRC/src/$B -name '*.java'`"
50if [ "x$CLASSES" != x ]; then
51    $JAVAC -g -d mods --module-source-path $TESTSRC/src $CLASSES
52fi
53PROPS="`(cd $TESTSRC/src/$B; find . -name '*.xml')`"
54if [ "x$PROPS" != x ]; then
55    for P in $PROPS
56    do
57      D=`dirname $P`
58      mkdir -p mods/$B/$D
59      cp $TESTSRC/src/$B/$P mods/$B/$D/
60    done
61fi
62
63$JAVAC -g -d mods --module-source-path $TESTSRC/src \
64       -cp mods/bundles `find $TESTSRC/src/test -name "*.java"`
65
66$JAVA -p mods -m test/jdk.test.Main de fr ja zh-tw en de
67
68exit $?
69