jdk/test/java/net/URL/runconstructor.sh
changeset 15726 27bb87e628ae
parent 15725 e0516b913894
parent 15722 b3dd9b35c97f
child 15727 e3baad90c331
equal deleted inserted replaced
15725:e0516b913894 15726:27bb87e628ae
     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 ${COMPILEJAVA}${FS}bin${FS}javac ${TESTJAVACOPTS} ${TESTTOOLVMOPTS} -d . \
       
    48     ${TESTSRC}${FS}Constructor.java
       
    49 
       
    50 failures=0
       
    51 
       
    52 go() {
       
    53     echo ''
       
    54     ${TESTJAVA}${FS}bin${FS}java ${TESTVMOPTS} Constructor $1
       
    55     if [ $? != 0 ]; then failures=`expr $failures + 1`; fi
       
    56 }
       
    57 
       
    58 go ${TESTSRC}${FS}share_file_urls
       
    59 go ${TESTSRC}${FS}jar_urls
       
    60 go ${TESTSRC}${FS}normal_http_urls
       
    61 go ${TESTSRC}${FS}ftp_urls
       
    62 go ${TESTSRC}${FS}abnormal_http_urls
       
    63 
       
    64 if [ "$failures" != "0" ]; then
       
    65     echo $failures tests failed
       
    66     exit 1;
       
    67 fi