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 Basic test for ResourceBundle with modules; named module "test"
27#          contains resource bundles for root and en, and separate named modules
28#          "eubundles" and "asiabundles" contain other resource bundles.
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
43
44for I in eu asia
45do
46  B=${I}bundles
47  mkdir -p mods/$B
48  CLASSES="`find $TESTSRC/src/$B -name '*.java'`"
49  if [ "x$CLASSES" != x ]; then
50    $JAVAC -g -d mods --module-source-path $TESTSRC/src -cp mods/test $CLASSES
51  fi
52  PROPS="`(cd $TESTSRC/src/$B; find . -name '*.properties')`"
53  if [ "x$PROPS" != x ]; then
54      for P in $PROPS
55      do
56        D=`dirname $P`
57        mkdir -p mods/$B/$D
58        cp $TESTSRC/src/$B/$P mods/$B/$D/
59      done
60  fi
61done
62
63mkdir -p mods/test
64$JAVAC -g -d mods --module-source-path $TESTSRC/src `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