1 | # @test
|
---|
2 | # @bug 4811102 4953711 4955505 4956301 4991229 4998210 5018605 6387069
|
---|
3 | # @build PrintVersion
|
---|
4 | # @build UglyPrintVersion
|
---|
5 | # @build ZipMeUp
|
---|
6 | # @run shell MultipleJRE.sh
|
---|
7 | # @summary Verify Multiple JRE version support
|
---|
8 | # @author Joseph E. Kowalski
|
---|
9 |
|
---|
10 | #
|
---|
11 | # Copyright (c) 2003, 2008, Oracle and/or its affiliates. All rights reserved.
|
---|
12 | # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
---|
13 | #
|
---|
14 | # This code is free software; you can redistribute it and/or modify it
|
---|
15 | # under the terms of the GNU General Public License version 2 only, as
|
---|
16 | # published by the Free Software Foundation.
|
---|
17 | #
|
---|
18 | # This code is distributed in the hope that it will be useful, but WITHOUT
|
---|
19 | # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
---|
20 | # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
---|
21 | # version 2 for more details (a copy is included in the LICENSE file that
|
---|
22 | # accompanied this code).
|
---|
23 | #
|
---|
24 | # You should have received a copy of the GNU General Public License version
|
---|
25 | # 2 along with this work; if not, write to the Free Software Foundation,
|
---|
26 | # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
---|
27 | #
|
---|
28 | # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
---|
29 | # or visit www.oracle.com if you need additional information or have any
|
---|
30 | # questions.
|
---|
31 | #
|
---|
32 |
|
---|
33 | # Verify directory context variables are set
|
---|
34 | if [ "${TESTJAVA}" = "" ]
|
---|
35 | then
|
---|
36 | echo "TESTJAVA not set. Test cannot execute. Failed."
|
---|
37 | exit 1
|
---|
38 | fi
|
---|
39 |
|
---|
40 | if [ "${TESTSRC}" = "" ]
|
---|
41 | then
|
---|
42 | echo "TESTSRC not set. Test cannot execute. Failed."
|
---|
43 | exit 1
|
---|
44 | fi
|
---|
45 |
|
---|
46 | if [ "${TESTCLASSES}" = "" ]
|
---|
47 | then
|
---|
48 | echo "TESTCLASSES not set. Test cannot execute. Failed."
|
---|
49 | exit 1
|
---|
50 | fi
|
---|
51 |
|
---|
52 | JAVAEXE="$TESTJAVA/bin/java"
|
---|
53 | JAVA="$TESTJAVA/bin/java -classpath $TESTCLASSES"
|
---|
54 | JAR="$TESTJAVA/bin/jar"
|
---|
55 | OS=`uname -s`;
|
---|
56 |
|
---|
57 | # Tests whether we are on windows (true) or not.
|
---|
58 | #
|
---|
59 | IsWindows() {
|
---|
60 | case "$OS" in
|
---|
61 | Windows* | CYGWIN* )
|
---|
62 | printf "true"
|
---|
63 | ;;
|
---|
64 | * )
|
---|
65 | printf "false"
|
---|
66 | ;;
|
---|
67 | esac
|
---|
68 | }
|
---|
69 |
|
---|
70 | #
|
---|
71 | # Shell routine to test for the proper rejection of syntactically incorrect
|
---|
72 | # version specifications.
|
---|
73 | #
|
---|
74 | TestSyntax() {
|
---|
75 | mess="`$JAVA -version:\"$1\" -version 2>&1`"
|
---|
76 | if [ $? -eq 0 ]; then
|
---|
77 | echo "Invalid version syntax $1 accepted"
|
---|
78 | exit 1
|
---|
79 | fi
|
---|
80 | prefix="`echo "$mess" | cut -d ' ' -f 1-2`"
|
---|
81 | if [ "$prefix" != "Syntax error" ]; then
|
---|
82 | echo "Unexpected error message for invalid syntax $1"
|
---|
83 | exit 1
|
---|
84 | fi
|
---|
85 | }
|
---|
86 |
|
---|
87 | #
|
---|
88 | # Just as the name says. We sprinkle these in the appropriate location
|
---|
89 | # in the test file system and they just say who they are pretending to be.
|
---|
90 | #
|
---|
91 | CreateMockVM() {
|
---|
92 | mkdir -p jdk/j2re$1/bin
|
---|
93 | echo "#!/bin/sh" > jdk/j2re$1/bin/java
|
---|
94 | echo "echo \"$1\"" >> jdk/j2re$1/bin/java
|
---|
95 | chmod +x jdk/j2re$1/bin/java
|
---|
96 | }
|
---|
97 |
|
---|
98 | #
|
---|
99 | # Constructs the jar file needed by these tests.
|
---|
100 | #
|
---|
101 | CreateJar() {
|
---|
102 | mkdir -p META-INF
|
---|
103 | echo "Manifest-Version: 1.0" > META-INF/MANIFEST.MF
|
---|
104 | echo "Main-Class: PrintVersion" >> META-INF/MANIFEST.MF
|
---|
105 | if [ "$1" != "" ]; then
|
---|
106 | echo "JRE-Version: $1" >> META-INF/MANIFEST.MF
|
---|
107 | fi
|
---|
108 | cp $TESTCLASSES/PrintVersion.class .
|
---|
109 | $JAR $2cmf META-INF/MANIFEST.MF PrintVersion PrintVersion.class
|
---|
110 | }
|
---|
111 |
|
---|
112 | #
|
---|
113 | # Constructs a jar file using zip.
|
---|
114 | #
|
---|
115 | CreateZippyJar() {
|
---|
116 | mkdir -p META-INF
|
---|
117 | echo "Manifest-Version: 1.0" > META-INF/MANIFEST.MF
|
---|
118 | echo "Main-Class: PrintVersion" >> META-INF/MANIFEST.MF
|
---|
119 | if [ "$1" != "" ]; then
|
---|
120 | echo "JRE-Version: $1" >> META-INF/MANIFEST.MF
|
---|
121 | fi
|
---|
122 | cp $TESTCLASSES/PrintVersion.class .
|
---|
123 | /usr/bin/zip $2 PrintVersion META-INF/MANIFEST.MF PrintVersion.class
|
---|
124 | }
|
---|
125 |
|
---|
126 | #
|
---|
127 | # Constructs a jar file with a Main-Class attribute of greater than
|
---|
128 | # 80 characters to validate the continuation line processing.
|
---|
129 | #
|
---|
130 | # Make this just long enough to require two continuation lines. Longer
|
---|
131 | # paths take too much away from the restricted Windows maximum path length.
|
---|
132 | # Note: see the variable UGLYCLASS and its check for path length.
|
---|
133 | #
|
---|
134 | # Make sure that 5018605 remains fixed by including additional sections
|
---|
135 | # in the Manifest which contain the same names as those allowed in the
|
---|
136 | # main section.
|
---|
137 | #
|
---|
138 | PACKAGE=reallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreallylongpackagename
|
---|
139 | UGLYCLASS=$TESTCLASSES/$PACKAGE/UglyPrintVersion.class
|
---|
140 | CreateUglyJar() {
|
---|
141 | mkdir -p META-INF
|
---|
142 | echo "Manifest-Version: 1.0" > META-INF/MANIFEST.MF
|
---|
143 | echo "Main-Class: $PACKAGE.UglyPrintVersion" >> META-INF/MANIFEST.MF
|
---|
144 | if [ "$1" != "" ]; then
|
---|
145 | echo "JRE-Version: $1" >> META-INF/MANIFEST.MF
|
---|
146 | fi
|
---|
147 | echo "" >> META-INF/MANIFEST.MF
|
---|
148 | echo "Name: NotToBeFound.class" >> META-INF/MANIFEST.MF
|
---|
149 | echo "Main-Class: NotToBeFound" >> META-INF/MANIFEST.MF
|
---|
150 | mkdir -p $PACKAGE
|
---|
151 | cp $UGLYCLASS $PACKAGE
|
---|
152 | $JAR $2cmf META-INF/MANIFEST.MF PrintVersion \
|
---|
153 | $PACKAGE/UglyPrintVersion.class
|
---|
154 | }
|
---|
155 |
|
---|
156 |
|
---|
157 | #
|
---|
158 | # Constructs a jar file with a fair number of "zip directory" entries and
|
---|
159 | # the MANIFEST.MF entry at or near the end of that directory to validate
|
---|
160 | # the ability to transverse that directory.
|
---|
161 | #
|
---|
162 | CreateFullJar() {
|
---|
163 | mkdir -p META-INF
|
---|
164 | echo "Manifest-Version: 1.0" > META-INF/MANIFEST.MF
|
---|
165 | echo "Main-Class: PrintVersion" >> META-INF/MANIFEST.MF
|
---|
166 | if [ "$1" != "" ]; then
|
---|
167 | echo "JRE-Version: $1" >> META-INF/MANIFEST.MF
|
---|
168 | fi
|
---|
169 | cp $TESTCLASSES/PrintVersion.class .
|
---|
170 | for i in 0 1 2 3 4 5 6 7 8 9 ; do
|
---|
171 | for j in 0 1 2 3 4 5 6 7 8 9 ; do
|
---|
172 | touch AfairlyLongNameEatsUpDirectorySpaceBetter$i$j
|
---|
173 | done
|
---|
174 | done
|
---|
175 | $JAR $2cMf PrintVersion PrintVersion.class AfairlyLong*
|
---|
176 | $JAR $2umf META-INF/MANIFEST.MF PrintVersion
|
---|
177 | rm -f AfairlyLong*
|
---|
178 | }
|
---|
179 |
|
---|
180 | #
|
---|
181 | # Creates a jar file with the attributes which caused the failure
|
---|
182 | # described in 4991229.
|
---|
183 | #
|
---|
184 | # Generate a bunch of CENTAB entries, each of which is 64 bytes long
|
---|
185 | # which practically guarentees we will hit the appropriate power of
|
---|
186 | # two buffer (initially 1K). Note that due to the perversity of
|
---|
187 | # zip/jar files, the first entry gets extra stuff so it needs a
|
---|
188 | # shorter name to compensate.
|
---|
189 | #
|
---|
190 | CreateAlignedJar() {
|
---|
191 | mkdir -p META-INF
|
---|
192 | echo "Manifest-Version: 1.0" > META-INF/MANIFEST.MF
|
---|
193 | echo "Main-Class: PrintVersion" >> META-INF/MANIFEST.MF
|
---|
194 | if [ "$1" != "" ]; then
|
---|
195 | echo "JRE-Version: $1" >> META-INF/MANIFEST.MF
|
---|
196 | fi
|
---|
197 | cp $TESTCLASSES/PrintVersion.class .
|
---|
198 | touch 57BytesSpecial
|
---|
199 | for i in 0 1 2 3 4 5 6 7 8 9 ; do
|
---|
200 | for j in 0 1 2 3 4 5 6 7 8 9 ; do
|
---|
201 | touch 64BytesPerEntry-$i$j
|
---|
202 | done
|
---|
203 | done
|
---|
204 | $JAR $2cMf PrintVersion 57* 64* PrintVersion.class
|
---|
205 | $JAR $2umf META-INF/MANIFEST.MF PrintVersion
|
---|
206 | rm -f 57* 64*
|
---|
207 | }
|
---|
208 |
|
---|
209 | #
|
---|
210 | # Adds comments to a jar/zip file. This serves two purposes:
|
---|
211 | #
|
---|
212 | # 1) Make sure zip file comments (both per file and per archive) are
|
---|
213 | # properly processed and ignored.
|
---|
214 | #
|
---|
215 | # 2) A long file comment creates a mondo "Central Directory" entry in
|
---|
216 | # the zip file. Such a "mondo" entry could also be due to a very
|
---|
217 | # long file name (path) or a long "Ext" entry, but adding the long
|
---|
218 | # comment is the easiest way.
|
---|
219 | #
|
---|
220 | CommentZipFile() {
|
---|
221 | file=
|
---|
222 | tail="is designed to take up space - lots and lots of space."
|
---|
223 | mv PrintVersion PrintVersion.zip
|
---|
224 | /usr/bin/zipnote PrintVersion.zip > zipout
|
---|
225 | while read ampersand line; do
|
---|
226 | if [ "$ampersand" = "@" ]; then
|
---|
227 | if [ "$line" = "(comment above this line)" ]; then
|
---|
228 | echo "File Comment Line." >> zipin
|
---|
229 | if [ "$file" = "$1" ]; then
|
---|
230 | for i in 0 1 2 3 4 5 6 7 8 9 a b c d e f; do
|
---|
231 | for j in 0 1 2 3 4 5 6 7 8 9 a b c d e f; do
|
---|
232 | echo "Mondo comment line $i$j $tail" >> zipin
|
---|
233 | done
|
---|
234 | done
|
---|
235 | fi
|
---|
236 | else
|
---|
237 | file=$line
|
---|
238 | fi
|
---|
239 | fi
|
---|
240 | echo "$ampersand $line" >> zipin
|
---|
241 | if [ "$ampersand" = "@" ]; then
|
---|
242 | if [ "$line" = "(zip file comment below this line)" ]; then
|
---|
243 | echo "Zip File Comment Line number 1" >> zipin
|
---|
244 | echo "Zip File Comment Line number 2" >> zipin
|
---|
245 | fi
|
---|
246 | fi
|
---|
247 | done < zipout
|
---|
248 | /usr/bin/zipnote -w PrintVersion.zip < zipin
|
---|
249 | mv PrintVersion.zip PrintVersion
|
---|
250 | rm zipout zipin
|
---|
251 | }
|
---|
252 |
|
---|
253 | #
|
---|
254 | # Attempt to launch a vm using a version specifier and make sure the
|
---|
255 | # resultant launch (probably a "mock vm") is appropriate.
|
---|
256 | #
|
---|
257 | LaunchVM() {
|
---|
258 | if [ "$1" != "" ]; then
|
---|
259 | mess="`$JAVA -version:\"$1\" -jar PrintVersion 2>&1`"
|
---|
260 | else
|
---|
261 | mess="`$JAVA -jar PrintVersion 2>&1`"
|
---|
262 | fi
|
---|
263 | if [ $? -ne 0 ]; then
|
---|
264 | prefix=`echo "$mess" | cut -d ' ' -f 1-3`
|
---|
265 | if [ "$prefix" != "Unable to locate" ]; then
|
---|
266 | echo "$mess"
|
---|
267 | exit 1
|
---|
268 | fi
|
---|
269 | echo "Unexpected error in attempting to locate $1"
|
---|
270 | exit 1
|
---|
271 | fi
|
---|
272 | echo $mess | grep "$2" > /dev/null 2>&1
|
---|
273 | if [ $? != 0 ]; then
|
---|
274 | echo "Launched $mess, expected $2"
|
---|
275 | exit 1
|
---|
276 | fi
|
---|
277 | }
|
---|
278 |
|
---|
279 | # Tests very long Main-Class attribute in the jar.
|
---|
280 | TestLongMainClass() {
|
---|
281 | JVER=$1
|
---|
282 | if [ "$JVER" = "mklink" ]; then
|
---|
283 | JVER=XX
|
---|
284 | JDKXX=jdk/j2re$JVER
|
---|
285 | rm -rf jdk
|
---|
286 | mkdir jdk
|
---|
287 | ln -s $TESTJAVA $JDKXX
|
---|
288 | JAVA_VERSION_PATH="`pwd`/jdk"
|
---|
289 | export JAVA_VERSION_PATH
|
---|
290 | fi
|
---|
291 | $JAVAEXE -cp $TESTCLASSES ZipMeUp UglyBetty.jar 4097
|
---|
292 | message="`$JAVAEXE -version:$JVER -jar UglyBetty.jar 2>&1`"
|
---|
293 | echo $message | grep "Error: main-class: attribute exceeds system limits" > /dev/null 2>&1
|
---|
294 | if [ $? -ne 0 ]; then
|
---|
295 | printf "Long manifest test did not get expected error"
|
---|
296 | exit 1
|
---|
297 | fi
|
---|
298 | unset JAVA_VERSION_PATH
|
---|
299 | rm -rf jdk
|
---|
300 | }
|
---|
301 |
|
---|
302 | #
|
---|
303 | # Main test sequence starts here
|
---|
304 | #
|
---|
305 | RELEASE=`$JAVA -version 2>&1 | head -n 1 | cut -d ' ' -f 3 | \
|
---|
306 | sed -e "s/\"//g"`
|
---|
307 | BASE_RELEASE=`echo $RELEASE | sed -e "s/-.*//g"`
|
---|
308 |
|
---|
309 | #
|
---|
310 | # Make sure that the generic jar/manifest reading code works. Test both
|
---|
311 | # compressed and "stored" jar files.
|
---|
312 | #
|
---|
313 | # The "Ugly" jar (long manifest line) tests are only run if the combination
|
---|
314 | # of the file name length restrictions and the length of the cwd allow it.
|
---|
315 | #
|
---|
316 | CreateJar "" ""
|
---|
317 | LaunchVM "" "${RELEASE}"
|
---|
318 | CreateJar "" "0"
|
---|
319 | LaunchVM "" "${RELEASE}"
|
---|
320 | if [ `IsWindows` = "true" ]; then
|
---|
321 | MAXIMUM_PATH=255;
|
---|
322 | else
|
---|
323 | MAXIMUM_PATH=1024;
|
---|
324 | fi
|
---|
325 |
|
---|
326 | PATH_LENGTH=`printf "%s" "$UGLYCLASS" | wc -c`
|
---|
327 | if [ ${PATH_LENGTH} -lt ${MAXIMUM_PATH} ]; then
|
---|
328 | CreateUglyJar "" ""
|
---|
329 | LaunchVM "" "${RELEASE}"
|
---|
330 | CreateUglyJar "" "0"
|
---|
331 | LaunchVM "" "${RELEASE}"
|
---|
332 | else
|
---|
333 | printf "Warning: Skipped UglyJar test, path length exceeded, %d" $MAXIMUM_PATH
|
---|
334 | printf " allowed, the current path is %d\n" $PATH_LENGTH
|
---|
335 | fi
|
---|
336 | CreateAlignedJar "" ""
|
---|
337 | LaunchVM "" "${RELEASE}"
|
---|
338 | CreateFullJar "" ""
|
---|
339 | LaunchVM "" "${RELEASE}"
|
---|
340 |
|
---|
341 | #
|
---|
342 | # 4998210 shows that some very strange behaviors are semi-supported.
|
---|
343 | # In this case, it's the ability to prepend any kind of stuff to the
|
---|
344 | # jar file and require that the jar file still work. Note that this
|
---|
345 | # "interface" isn't publically supported and we may choose to break
|
---|
346 | # it in the future, but this test guarantees that we won't break it
|
---|
347 | # without informed consent. We take advantage the fact that the
|
---|
348 | # "FullJar" we just tested is probably the best jar to begin with
|
---|
349 | # for this test.
|
---|
350 | #
|
---|
351 | echo "This is just meaningless bytes to prepend to the jar" > meaningless
|
---|
352 | mv PrintVersion meaningfull
|
---|
353 | cat meaningless meaningfull > PrintVersion
|
---|
354 | LaunchVM "" "${RELEASE}"
|
---|
355 | rm meaningless meaningfull
|
---|
356 |
|
---|
357 | #
|
---|
358 | # Officially, one must use "the jar command to create a jar file. However,
|
---|
359 | # all the comments about jar commands **imply** that jar files and zip files
|
---|
360 | # are equivalent. (Note: this isn't true due to the "0xcafe" insertion.)
|
---|
361 | # On systems which have a command line zip, test the ability to use zip
|
---|
362 | # to construct a jar and then use it (6387069).
|
---|
363 | #
|
---|
364 | if [ -x /usr/bin/zip ]; then
|
---|
365 | CreateZippyJar "" "-q"
|
---|
366 | LaunchVM "" "${RELEASE}"
|
---|
367 | fi
|
---|
368 |
|
---|
369 | #
|
---|
370 | # jar files shouldn't have comments, but it is possible that somebody added
|
---|
371 | # one by using zip -c, zip -z, zipnote or a similar utility. On systems
|
---|
372 | # that have "zipnote", verify this functionality.
|
---|
373 | #
|
---|
374 | # This serves a dual purpose of creating a very large "central directory
|
---|
375 | # entry" which validates to code to read such entries.
|
---|
376 | #
|
---|
377 | if [ -x /usr/bin/zipnote ]; then
|
---|
378 | CreateFullJar "" ""
|
---|
379 | CommentZipFile "AfairlyLongNameEatsUpDirectorySpaceBetter20"
|
---|
380 | LaunchVM "" "${RELEASE}"
|
---|
381 | fi
|
---|
382 |
|
---|
383 |
|
---|
384 | #
|
---|
385 | # Throw some syntactically challenged (illegal) version specifiers at
|
---|
386 | # the interface. Failure (of the launcher) is success for the test.
|
---|
387 | #
|
---|
388 | TestSyntax "1.2..3" # Two adjacent separators
|
---|
389 | TestSyntax "_1.2.3" # Begins with a separator
|
---|
390 | TestSyntax "1.2.3-" # Ends with a separator
|
---|
391 | TestSyntax "1.2+.3" # Embedded modifier
|
---|
392 | TestSyntax "1.2.4+&1.2*&1++" # Long and invalid
|
---|
393 |
|
---|
394 | # On windows we see if there is another jre installed, usually
|
---|
395 | # there is, then we test using that, otherwise links are created
|
---|
396 | # to get through to SelectVersion.
|
---|
397 | if [ `IsWindows` = "false" ]; then
|
---|
398 | TestLongMainClass "mklink"
|
---|
399 | else
|
---|
400 | $JAVAEXE -version:1.0+
|
---|
401 | if [ $? -eq 0 ]; then
|
---|
402 | TestLongMainClass "1.0+"
|
---|
403 | else
|
---|
404 | printf "Warning: TestLongMainClass skipped as there is no"
|
---|
405 | printf "viable MJRE installed.\n"
|
---|
406 | fi
|
---|
407 | fi
|
---|
408 |
|
---|
409 | #
|
---|
410 | # Because scribbling in the registry can be rather destructive, only a
|
---|
411 | # subset of the tests are run on Windows.
|
---|
412 | #
|
---|
413 | if [ `IsWindows` = "true" ]; then
|
---|
414 | exit 0;
|
---|
415 | fi
|
---|
416 |
|
---|
417 | #
|
---|
418 | # Additional version specifiers containing spaces. (Sigh, unable to
|
---|
419 | # figure out the glomming on Windows)
|
---|
420 | #
|
---|
421 | TestSyntax "1.2.3_99 1.3.2+ 1.2.4+&1.2*&1++" # Long and invalid
|
---|
422 |
|
---|
423 | #
|
---|
424 | # Create a mock installation of a number of shell scripts named as though
|
---|
425 | # they were installed JREs. Then test to see if the launcher can cause
|
---|
426 | # the right shell scripts to be invoked.
|
---|
427 | #
|
---|
428 | # Note, that as a side effect, this test verifies that JAVA_VERSION_PATH
|
---|
429 | # works.
|
---|
430 | #
|
---|
431 | rm -rf jdk
|
---|
432 | JAVA_VERSION_PATH="`pwd`/jdk"
|
---|
433 | export JAVA_VERSION_PATH
|
---|
434 |
|
---|
435 | CreateMockVM 1.10
|
---|
436 | CreateMockVM 1.11.3
|
---|
437 | CreateMockVM 1.11.3_03
|
---|
438 | CreateMockVM 1.11.4
|
---|
439 | CreateMockVM 1.12.3_03
|
---|
440 | CreateMockVM 1.12.3_03-lastweek
|
---|
441 | CreateMockVM 1.13.3_03
|
---|
442 | CreateMockVM 1.13.3_03-lastweek
|
---|
443 | CreateMockVM 1.13.3_03_lastweek
|
---|
444 | CreateMockVM 1.20.0
|
---|
445 |
|
---|
446 | #
|
---|
447 | # Test extracting the version information from the jar file:
|
---|
448 | #
|
---|
449 | # Requested Expected
|
---|
450 | CreateJar "1.10+" ""
|
---|
451 | LaunchVM "" "1.20.0"
|
---|
452 | CreateJar "1.11.3_03+&1.11*" ""
|
---|
453 | LaunchVM "" "1.11.4"
|
---|
454 | CreateJar "1.12.3_03+&1.12.3*" ""
|
---|
455 | LaunchVM "" "1.12.3_03"
|
---|
456 | CreateJar "1.13.3_03+&1.13.3*" ""
|
---|
457 | LaunchVM "" "1.13.3_03_lastweek" # Strange but true
|
---|
458 |
|
---|
459 | #
|
---|
460 | # Test obtaining the version information from the command line (and that
|
---|
461 | # it overrides the manifest).
|
---|
462 | #
|
---|
463 | CreateJar "${BASERELEASE}*" ""
|
---|
464 | LaunchVM "1.10+" "1.20.0"
|
---|
465 | LaunchVM "1.11.3_03+&1.11*" "1.11.4"
|
---|
466 | LaunchVM "1.12.3_03+&1.12.3*" "1.12.3_03"
|
---|
467 | LaunchVM "1.13.3_03+&1.13.3*" "1.13.3_03_lastweek" # Strange but true
|
---|
468 |
|
---|
469 | [ -d jdk ] && rm -rf jdk
|
---|
470 | [ -d META_INF ] && rm -rf META_INF
|
---|
471 |
|
---|
472 | exit 0
|
---|