8286771: workaround implemented for JDK-8282607 is incomplete

Reviewed-by: dholmes
This commit is contained in:
Doug Simon 2022-05-14 15:28:53 +00:00
parent 80cf9f3464
commit af24d2d1d6

View File

@ -162,6 +162,7 @@ public class MachCodeFramesInErrorFile {
// code blob dumping is missing, exit successfully.
System.out.println("Could not find \"" + preCodeBlobSectionHeader + "\" in " + hsErrPath);
System.out.println("Looks like hs-err is truncated - exiting with success");
return;
}
Matcher matcher = Pattern.compile("\\[MachCode\\]\\s*\\[Verified Entry Point\\]\\s* # \\{method\\} \\{[^}]*\\} '([^']+)' '([^']+)' in '([^']+)'", Pattern.DOTALL).matcher(hsErr);