equal
deleted
inserted
replaced
1 /* |
1 /* |
2 * Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved. |
2 * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved. |
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 * |
4 * |
5 * This code is free software; you can redistribute it and/or modify it |
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 |
6 * under the terms of the GNU General Public License version 2 only, as |
7 * published by the Free Software Foundation. |
7 * published by the Free Software Foundation. |
24 import java.io.File; |
24 import java.io.File; |
25 import java.io.FileOutputStream; |
25 import java.io.FileOutputStream; |
26 import jdk.internal.org.objectweb.asm.ClassWriter; |
26 import jdk.internal.org.objectweb.asm.ClassWriter; |
27 import jdk.internal.org.objectweb.asm.MethodVisitor; |
27 import jdk.internal.org.objectweb.asm.MethodVisitor; |
28 import static jdk.internal.org.objectweb.asm.Opcodes.*; |
28 import static jdk.internal.org.objectweb.asm.Opcodes.*; |
29 import jdk.test.lib.*; |
29 import jdk.test.lib.process.ProcessTools; |
|
30 import jdk.test.lib.process.OutputAnalyzer; |
30 |
31 |
31 /* |
32 /* |
32 * @test OverriderMsg |
33 * @test OverriderMsg |
33 * @bug 8026894 |
34 * @bug 8026894 |
34 * @library /testlibrary |
35 * @library /test/lib |
35 * @modules java.base/jdk.internal.org.objectweb.asm |
36 * @modules java.base/jdk.internal.org.objectweb.asm |
36 * java.base/jdk.internal.misc |
37 * java.base/jdk.internal.misc |
37 * java.management |
38 * java.management |
38 * @compile -XDignore.symbol.file OverriderMsg.java |
39 * @compile -XDignore.symbol.file OverriderMsg.java |
39 * @run main/othervm OverriderMsg |
40 * @run main/othervm OverriderMsg |