author | ksrini |
Sat, 28 Jan 2012 10:46:46 -0800 | |
changeset 11687 | f13cadbb0bb5 |
parent 5506 | 202f599c92aa |
child 45944 | 882cea808912 |
permissions | -rw-r--r-- |
2 | 1 |
/* |
11687
f13cadbb0bb5
7127906: (launcher) convert the launcher regression tests to java
ksrini
parents:
5506
diff
changeset
|
2 |
* Copyright (c) 2002, 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 |
/* |
|
11687
f13cadbb0bb5
7127906: (launcher) convert the launcher regression tests to java
ksrini
parents:
5506
diff
changeset
|
25 |
* @test |
f13cadbb0bb5
7127906: (launcher) convert the launcher regression tests to java
ksrini
parents:
5506
diff
changeset
|
26 |
* @bug 4529320 |
f13cadbb0bb5
7127906: (launcher) convert the launcher regression tests to java
ksrini
parents:
5506
diff
changeset
|
27 |
* @compile -XDignore.symbol.file UnresolvedExceptions.java |
f13cadbb0bb5
7127906: (launcher) convert the launcher regression tests to java
ksrini
parents:
5506
diff
changeset
|
28 |
* @run main UnresolvedExceptions |
f13cadbb0bb5
7127906: (launcher) convert the launcher regression tests to java
ksrini
parents:
5506
diff
changeset
|
29 |
* @summary Verifying jvm won't segv if exception not available |
f13cadbb0bb5
7127906: (launcher) convert the launcher regression tests to java
ksrini
parents:
5506
diff
changeset
|
30 |
* @author Joseph D. Darcy, ksrini |
2 | 31 |
*/ |
32 |
||
11687
f13cadbb0bb5
7127906: (launcher) convert the launcher regression tests to java
ksrini
parents:
5506
diff
changeset
|
33 |
import java.io.File; |
f13cadbb0bb5
7127906: (launcher) convert the launcher regression tests to java
ksrini
parents:
5506
diff
changeset
|
34 |
import java.util.ArrayList; |
f13cadbb0bb5
7127906: (launcher) convert the launcher regression tests to java
ksrini
parents:
5506
diff
changeset
|
35 |
import java.util.List; |
f13cadbb0bb5
7127906: (launcher) convert the launcher regression tests to java
ksrini
parents:
5506
diff
changeset
|
36 |
|
f13cadbb0bb5
7127906: (launcher) convert the launcher regression tests to java
ksrini
parents:
5506
diff
changeset
|
37 |
|
f13cadbb0bb5
7127906: (launcher) convert the launcher regression tests to java
ksrini
parents:
5506
diff
changeset
|
38 |
public class UnresolvedExceptions extends TestHelper { |
f13cadbb0bb5
7127906: (launcher) convert the launcher regression tests to java
ksrini
parents:
5506
diff
changeset
|
39 |
|
f13cadbb0bb5
7127906: (launcher) convert the launcher regression tests to java
ksrini
parents:
5506
diff
changeset
|
40 |
public static void main(String... args) throws Exception { |
f13cadbb0bb5
7127906: (launcher) convert the launcher regression tests to java
ksrini
parents:
5506
diff
changeset
|
41 |
final String fname = "Foo"; |
f13cadbb0bb5
7127906: (launcher) convert the launcher regression tests to java
ksrini
parents:
5506
diff
changeset
|
42 |
List<String> buffer = new ArrayList<>(); |
f13cadbb0bb5
7127906: (launcher) convert the launcher regression tests to java
ksrini
parents:
5506
diff
changeset
|
43 |
buffer.add("public class " + fname + " {"); |
f13cadbb0bb5
7127906: (launcher) convert the launcher regression tests to java
ksrini
parents:
5506
diff
changeset
|
44 |
buffer.add(" public static void main(String[] argv) throws " |
f13cadbb0bb5
7127906: (launcher) convert the launcher regression tests to java
ksrini
parents:
5506
diff
changeset
|
45 |
+ "Foo.SomeException {"); |
f13cadbb0bb5
7127906: (launcher) convert the launcher regression tests to java
ksrini
parents:
5506
diff
changeset
|
46 |
buffer.add(" System.exit(0);"); |
f13cadbb0bb5
7127906: (launcher) convert the launcher regression tests to java
ksrini
parents:
5506
diff
changeset
|
47 |
buffer.add(" }"); |
f13cadbb0bb5
7127906: (launcher) convert the launcher regression tests to java
ksrini
parents:
5506
diff
changeset
|
48 |
buffer.add(" static class SomeException extends RuntimeException{}"); |
f13cadbb0bb5
7127906: (launcher) convert the launcher regression tests to java
ksrini
parents:
5506
diff
changeset
|
49 |
buffer.add("}"); |
f13cadbb0bb5
7127906: (launcher) convert the launcher regression tests to java
ksrini
parents:
5506
diff
changeset
|
50 |
|
f13cadbb0bb5
7127906: (launcher) convert the launcher regression tests to java
ksrini
parents:
5506
diff
changeset
|
51 |
File testJavaFile = new File("Foo" + JAVA_FILE_EXT); |
f13cadbb0bb5
7127906: (launcher) convert the launcher regression tests to java
ksrini
parents:
5506
diff
changeset
|
52 |
createFile(testJavaFile, buffer); |
f13cadbb0bb5
7127906: (launcher) convert the launcher regression tests to java
ksrini
parents:
5506
diff
changeset
|
53 |
compile(testJavaFile.getName()); |
f13cadbb0bb5
7127906: (launcher) convert the launcher regression tests to java
ksrini
parents:
5506
diff
changeset
|
54 |
TestResult tr = doExec(javaCmd, "-cp", ".", fname); |
f13cadbb0bb5
7127906: (launcher) convert the launcher regression tests to java
ksrini
parents:
5506
diff
changeset
|
55 |
if (!tr.isOK()) { |
f13cadbb0bb5
7127906: (launcher) convert the launcher regression tests to java
ksrini
parents:
5506
diff
changeset
|
56 |
System.out.println(tr); |
f13cadbb0bb5
7127906: (launcher) convert the launcher regression tests to java
ksrini
parents:
5506
diff
changeset
|
57 |
throw new RuntimeException("java -cp ... failed"); |
2 | 58 |
} |
59 |
} |
|
11687
f13cadbb0bb5
7127906: (launcher) convert the launcher regression tests to java
ksrini
parents:
5506
diff
changeset
|
60 |
} |