Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openjdk-multiarch-jdk8u
Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/test/sun/net/www/protocol/jar/jarbug/run.sh
38889 views
1
#! /bin/sh
2
3
#
4
# Copyright (c) 2005, 2012, Oracle and/or its affiliates. All rights reserved.
5
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6
#
7
# This code is free software; you can redistribute it and/or modify it
8
# under the terms of the GNU General Public License version 2 only, as
9
# published by the Free Software Foundation.
10
#
11
# This code is distributed in the hope that it will be useful, but WITHOUT
12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14
# version 2 for more details (a copy is included in the LICENSE file that
15
# accompanied this code).
16
#
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
# @bug 4361044 4388202 4418643 4523159 4730642
28
# @summary various resource and classloading bugs related to jar files
29
#set -x
30
DEST=`pwd`
31
32
OS=`uname -s`
33
case "$OS" in
34
SunOS | Linux | Darwin | AIX )
35
PS=":"
36
FS="/"
37
CHMOD="${FS}bin${FS}chmod"
38
;;
39
Windows* )
40
PS=";"
41
FS="\\"
42
CHMOD="chmod"
43
;;
44
CYGWIN* )
45
PS=";"
46
FS="/"
47
CHMOD="chmod"
48
#
49
# javac does not like /cygdrive produced by `pwd`.
50
#
51
DEST=`cygpath -d ${DEST}`
52
;;
53
* )
54
echo "Unrecognized system!"
55
exit 1;
56
;;
57
esac
58
59
#
60
# build jar1
61
#
62
mkdir -p ${DEST}${FS}jar1
63
cd ${TESTSRC}${FS}etc${FS}jar1
64
cp -r . ${DEST}${FS}jar1
65
${CHMOD} -R u+w ${DEST}${FS}jar1
66
${COMPILEJAVA}${FS}bin${FS}javac ${TESTJAVACOPTS} ${TESTTOOLVMOPTS} -d ${DEST}${FS}jar1 \
67
${TESTSRC}${FS}src${FS}jar1${FS}LoadResourceBundle.java
68
${COMPILEJAVA}${FS}bin${FS}javac ${TESTJAVACOPTS} ${TESTTOOLVMOPTS} -d ${DEST}${FS}jar1 \
69
${TESTSRC}${FS}src${FS}jar1${FS}GetResource.java
70
cd ${DEST}${FS}jar1
71
${COMPILEJAVA}${FS}bin${FS}jar ${TESTTOOLVMOPTS} cfM jar1.jar jar1 res1.txt
72
mv jar1.jar ..
73
#
74
# build the test sources and run them
75
#
76
${COMPILEJAVA}${FS}bin${FS}javac ${TESTJAVACOPTS} ${TESTTOOLVMOPTS} -d ${DEST} ${TESTSRC}${FS}src${FS}test${FS}*.java
77
cd ${DEST}
78
${TESTJAVA}${FS}bin${FS}java ${TESTVMOPTS} RunAllTests
79
result=$?
80
if [ "$result" -ne "0" ]; then
81
exit 1
82
fi
83
rm -rf *
84
exit 0
85
86