< prev index next >

test/runtime/NMT/MallocTrackingVerify.java

Print this page

        

*** 24,46 **** /* * @test * @bug 8054836 * @summary Test to verify correctness of malloc tracking * @key nmt jcmd ! * @library /testlibrary /test/lib * @modules java.base/jdk.internal.misc * java.management ! * @build MallocTrackingVerify * @run main ClassFileInstaller sun.hotspot.WhiteBox * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -XX:NativeMemoryTracking=detail MallocTrackingVerify * */ import java.util.ArrayList; import java.util.Random; ! import jdk.test.lib.*; import sun.hotspot.WhiteBox; public class MallocTrackingVerify { private static int MAX_ALLOC = 4 * 1024; --- 24,48 ---- /* * @test * @bug 8054836 * @summary Test to verify correctness of malloc tracking * @key nmt jcmd ! * @library /test/lib * @modules java.base/jdk.internal.misc * java.management ! * @build sun.hotspot.WhiteBox * @run main ClassFileInstaller sun.hotspot.WhiteBox * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -XX:NativeMemoryTracking=detail MallocTrackingVerify * */ import java.util.ArrayList; import java.util.Random; ! import jdk.test.lib.process.ProcessTools; ! import jdk.test.lib.process.OutputAnalyzer; ! import jdk.test.lib.JDKToolFinder; import sun.hotspot.WhiteBox; public class MallocTrackingVerify { private static int MAX_ALLOC = 4 * 1024;
< prev index next >