author | alanb |
Fri, 02 Nov 2012 15:50:11 +0000 | |
changeset 14342 | 8435a30053c1 |
parent 12047 | 320a714614e9 |
child 14786 | a9f61e0cbe61 |
permissions | -rw-r--r-- |
2 | 1 |
# |
14342
8435a30053c1
7197491: update copyright year to match last edit in jdk8 jdk repository
alanb
parents:
12047
diff
changeset
|
2 |
# Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved. |
2 | 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 |
# |
|
5506 | 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. |
|
2 | 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 |
|
12047
320a714614e9
7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
5506
diff
changeset
|
30 |
SunOS | Linux | Darwin ) |
2 | 31 |
PS=":" |
32 |
FS="/" |
|
33 |
;; |
|
3433 | 34 |
CYGWIN* ) |
35 |
PS=";" |
|
36 |
FS="/" |
|
37 |
;; |
|
2 | 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 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 |