# HG changeset patch # User gtriantafill # Date 1408715189 25200 # Node ID 19fc73d027a61f0cfcf1ca7bc5b9bfcb47b7b4ce # Parent acb20c7342378c5d1e0a90e1b3562ce4192002a0 8055052: [TESTBUG] runtime/NMT/JcmdDetailDiff.java fails on Windows when there are no debug symbols available Reviewed-by: ctornqvi, hseigel diff -r acb20c734237 -r 19fc73d027a6 test/runtime/NMT/JcmdDetailDiff.java --- a/test/runtime/NMT/JcmdDetailDiff.java Tue Aug 19 06:47:28 2014 -0700 +++ b/test/runtime/NMT/JcmdDetailDiff.java Fri Aug 22 06:46:29 2014 -0700 @@ -62,21 +62,18 @@ output = new OutputAnalyzer(pb.start()); output.shouldContain("Test (reserved=256KB +256KB, committed=0KB)"); - output.shouldContain("WB_NMTReserveMemory"); wb.NMTCommitMemory(addr, commitSize); pb.command(new String[] { JDKToolFinder.getJDKTool("jcmd"), pid, "VM.native_memory", "detail.diff", "scale=KB"}); output = new OutputAnalyzer(pb.start()); output.shouldContain("Test (reserved=256KB +256KB, committed=128KB +128KB)"); - output.shouldContain("WB_NMTReserveMemory"); wb.NMTUncommitMemory(addr, commitSize); pb.command(new String[] { JDKToolFinder.getJDKTool("jcmd"), pid, "VM.native_memory", "detail.diff", "scale=KB"}); output = new OutputAnalyzer(pb.start()); output.shouldContain("Test (reserved=256KB +256KB, committed=0KB)"); - output.shouldContain("WB_NMTReserveMemory"); wb.NMTReleaseMemory(addr, reserveSize); pb.command(new String[] { JDKToolFinder.getJDKTool("jcmd"), pid, "VM.native_memory", "detail.diff", "scale=KB"});