test/java/net/URLClassLoader/B5077773.sh

Print this page
rev 8975 : 8028537: PPC64: Updated the JDK regression tests to run on AIX
Reviewed-by: alanb
Contributed-by: luchsh@linux.vnet.ibm.com, spoole@linux.vnet.ibm.com, volker.simonis@gmail.com


  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  26 # @test
  27 # @author Michael McMahon
  28 # @bug 5077773
  29 # @summary Change in behaviour w.r.t jdk1.4.2 when loading resourcebundles
  30 #
  31 # ${TESTJAVA} is pointing to the jre
  32 #
  33 # set platform-dependent variables
  34 
  35 OS=`uname -s`
  36 case "$OS" in
  37   SunOS | Darwin )
  38     PS=":"
  39     FS="/"
  40     ;;
  41   Linux )
  42     PS=":"
  43     FS="/"
  44     ;;
  45   CYGWIN* )
  46     PS=";"
  47     FS="/"
  48     ;;
  49   Windows* )
  50     PS=";"
  51     FS="\\"
  52     ;;
  53   * )
  54     echo "Unrecognized system!"
  55     exit 1;
  56     ;;
  57 esac


  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  26 # @test
  27 # @author Michael McMahon
  28 # @bug 5077773
  29 # @summary Change in behaviour w.r.t jdk1.4.2 when loading resourcebundles
  30 #
  31 # ${TESTJAVA} is pointing to the jre
  32 #
  33 # set platform-dependent variables
  34 
  35 OS=`uname -s`
  36 case "$OS" in
  37   SunOS | Darwin | AIX )
  38     PS=":"
  39     FS="/"
  40     ;;
  41   Linux )
  42     PS=":"
  43     FS="/"
  44     ;;
  45   CYGWIN* )
  46     PS=";"
  47     FS="/"
  48     ;;
  49   Windows* )
  50     PS=";"
  51     FS="\\"
  52     ;;
  53   * )
  54     echo "Unrecognized system!"
  55     exit 1;
  56     ;;
  57 esac