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# @bug 8044767
26# @summary Simple test case for ResourceBundle with named modules;
27#          ResourceBundle.getBundle caller is in named module "test" and
28#          all resource bundles are in single named module "bundles" with
29#          service providers.
30
31
32set -e
33
34if [ -z "$TESTJAVA" ]; then
35  if [ $# -lt 1 ]; then exit 1; fi
36  TESTJAVA="$1"; shift
37  COMPILEJAVA="${TESTJAVA}"
38  TESTSRC="`pwd`"
39  TESTCLASSES="`pwd`"
40fi
41
42JAVAC="$COMPILEJAVA/bin/javac"
43JAVA="$TESTJAVA/bin/java"
44
45rm -rf mods
46
47mkdir -p mods/test
48
49B=bundles
50mkdir -p mods/$B
51CLASSES="`find $TESTSRC/src/$B -name '*.java'`"
52if [ "x$CLASSES" != x ]; then
53    $JAVAC -g -d mods --module-source-path $TESTSRC/src $CLASSES
54fi
55PROPS="`(cd $TESTSRC/src/$B; find . -name '*.properties')`"
56if [ "x$PROPS" != x ]; then
57    for P in $PROPS
58    do
59      D=`dirname $P`
60      mkdir -p mods/$B/$D
61      cp $TESTSRC/src/$B/$P mods/$B/$D/
62    done
63fi
64
65$JAVAC -g -d mods --module-source-path $TESTSRC/src \
66       -cp mods/bundles `find $TESTSRC/src/test -name "*.java"`
67
68$JAVA -p mods -m test/jdk.test.Main de fr ja zh-tw en de
69
70exit $?
71