1 #
   2 # Copyright (c) 2000, 2012, 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 4393671
  26 # @summary URL constructor URL(URL context, String spec) FAILED with specific input in merlin
  27 #
  28 OS=`uname -s`
  29 case "$OS" in
  30   SunOS | Linux | Darwin )
  31     PS=":"
  32     FS="/"
  33     ;;
  34   CYGWIN* )
  35     PS=";"
  36     FS="/"
  37     ;;
  38   Windows* )
  39     PS=";"
  40     FS="\\"
  41     ;;
  42   * )
  43     echo "Unrecognized system!"
  44     exit 1;
  45     ;;
  46 esac
  47 ${TESTJAVA}${FS}bin${FS}javac -d . ${TESTSRC}${FS}Constructor.java
  48 
  49 failures=0
  50 
  51 go() {
  52     echo ''
  53     ${TESTJAVA}${FS}bin${FS}java ${TESTVMOPTS} Constructor $1
  54     if [ $? != 0 ]; then failures=`expr $failures + 1`; fi
  55 }
  56 
  57 go ${TESTSRC}${FS}share_file_urls
  58 go ${TESTSRC}${FS}jar_urls
  59 go ${TESTSRC}${FS}normal_http_urls
  60 go ${TESTSRC}${FS}ftp_urls
  61 go ${TESTSRC}${FS}abnormal_http_urls
  62 
  63 if [ "$failures" != "0" ]; then
  64     echo $failures tests failed
  65     exit 1;
  66 fi