From a42ba1ff1a6c7c856323a8e2c54457fc3ddb3659 Mon Sep 17 00:00:00 2001 From: Erik Gahlin Date: Mon, 18 Aug 2025 10:36:35 +0000 Subject: [PATCH] 8365638: JFR: Add --exact for debugging out-of-order events Reviewed-by: shade --- test/jdk/jdk/jfr/tool/TestPrintContextual.java | 1 + 1 file changed, 1 insertion(+) diff --git a/test/jdk/jdk/jfr/tool/TestPrintContextual.java b/test/jdk/jdk/jfr/tool/TestPrintContextual.java index efecc31cb16..15486148b9c 100644 --- a/test/jdk/jdk/jfr/tool/TestPrintContextual.java +++ b/test/jdk/jdk/jfr/tool/TestPrintContextual.java @@ -410,6 +410,7 @@ public class TestPrintContextual { private static List readPrintedLines(Path file, String... options) throws Exception { JDKToolLauncher launcher = JDKToolLauncher.createUsingTestJDK("jfr"); launcher.addToolArg("print"); + launcher.addToolArg("--exact"); for (String option : options) { launcher.addToolArg(option); }