< prev index next >

test/runtime/Throwable/StackTraceLogging.java

Print this page

        

*** 23,44 **** /* * @test * @bug 8150778 * @summary check stacktrace logging ! * @library /testlibrary * @modules java.base/jdk.internal.misc * java.management - * @build jdk.test.lib.OutputAnalyzer jdk.test.lib.ProcessTools * @compile TestThrowable.java * @run driver StackTraceLogging */ import java.io.File; import java.util.Map; ! import jdk.test.lib.OutputAnalyzer; ! import jdk.test.lib.ProcessTools; public class StackTraceLogging { static void analyzeOutputOn(ProcessBuilder pb) throws Exception { OutputAnalyzer output = new OutputAnalyzer(pb.start()); // These depths match the ones in TestThrowable.java, except the one greater than 1024 --- 23,43 ---- /* * @test * @bug 8150778 * @summary check stacktrace logging ! * @library /test/lib * @modules java.base/jdk.internal.misc * java.management * @compile TestThrowable.java * @run driver StackTraceLogging */ import java.io.File; import java.util.Map; ! import jdk.test.lib.process.OutputAnalyzer; ! import jdk.test.lib.process.ProcessTools; public class StackTraceLogging { static void analyzeOutputOn(ProcessBuilder pb) throws Exception { OutputAnalyzer output = new OutputAnalyzer(pb.start()); // These depths match the ones in TestThrowable.java, except the one greater than 1024
< prev index next >