mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 02:54:35 +02:00
4884240: additional option required for javap
Reviewed-by: ksrini
This commit is contained in:
parent
44444bd9c0
commit
b6dbc8cf63
6 changed files with 172 additions and 3 deletions
|
@ -189,6 +189,10 @@ public class T6622260 {
|
|||
|
||||
void verify(String output) {
|
||||
System.out.println(output);
|
||||
if (output.startsWith("Classfile")) {
|
||||
// make sure to ignore filename
|
||||
output = output.substring(output.indexOf('\n'));
|
||||
}
|
||||
if (output.indexOf("-") >= 0)
|
||||
throw new Error("- found in output");
|
||||
if (output.indexOf("FFFFFF") >= 0)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue