< prev index next >

test/java/util/ResourceBundle/modules/appbasic2/appbasic2.sh

Print this page




   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 Basic test for ResourceBundle with modules



  26 
  27 set -e
  28 
  29 if [ -z "$TESTJAVA" ]; then
  30   if [ $# -lt 1 ]; then exit 1; fi
  31   TESTJAVA="$1"; shift
  32   COMPILEJAVA="${TESTJAVA}"
  33   TESTSRC="`pwd`"
  34   TESTCLASSES="`pwd`"
  35 fi
  36 
  37 JAVAC="$COMPILEJAVA/bin/javac"
  38 JAVA="$TESTJAVA/bin/java"
  39 
  40 
  41 for I in eu asia
  42 do
  43   B=${I}bundles
  44   mkdir -p mods/$B
  45   CLASSES="`find $TESTSRC/src/$B -name '*.java'`"


   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 
  30 set -e
  31 
  32 if [ -z "$TESTJAVA" ]; then
  33   if [ $# -lt 1 ]; then exit 1; fi
  34   TESTJAVA="$1"; shift
  35   COMPILEJAVA="${TESTJAVA}"
  36   TESTSRC="`pwd`"
  37   TESTCLASSES="`pwd`"
  38 fi
  39 
  40 JAVAC="$COMPILEJAVA/bin/javac"
  41 JAVA="$TESTJAVA/bin/java"
  42 
  43 
  44 for I in eu asia
  45 do
  46   B=${I}bundles
  47   mkdir -p mods/$B
  48   CLASSES="`find $TESTSRC/src/$B -name '*.java'`"
< prev index next >