OpenJDK / jdk / jdk12
changeset 25997:cd7dd678d9e2
8055012: [TESTBUG] NMTHelper fails to parse NMT output
Summary: Fixed the regular expression to parse the slightly changed output format of the new NMT implementation
Reviewed-by: olagneau, sla
author | ctornqvi |
---|---|
date | Tue, 19 Aug 2014 06:56:59 -0700 |
parents | 4aa9eb909760 |
children | 3efc2a6b082a |
files | jdk/test/java/lang/instrument/NMTHelper.java |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/jdk/test/java/lang/instrument/NMTHelper.java Tue Aug 19 16:02:48 2014 +0900 +++ b/jdk/test/java/lang/instrument/NMTHelper.java Tue Aug 19 06:56:59 2014 -0700 @@ -32,8 +32,8 @@ executeDcmd("vmNativeMemory", "baseline"); } - // Total: reserved=3484685KB +293KB, committed=266629KB +293KB - private static Pattern totalLine = Pattern.compile("^Total: reserved=\\d+KB .*KB, committed=\\d+KB (.*)KB$"); + // Total: reserved=3484685KB +293KB, committed=266629KB +293KB + private static Pattern totalLine = Pattern.compile("^Total: reserved=\\d+KB .*KB, committed=\\d+KB (.*)KB$"); public static long committedDiff() throws Exception { String res = (String) executeDcmd("vmNativeMemory", "detail.diff");