Skip to content

Commit

Permalink
Use -Xlog:all=debug for entering the deathtest message
Browse files Browse the repository at this point in the history
  • Loading branch information
jdksjolen committed Feb 11, 2025
1 parent 02b0d73 commit 7d2cf5e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
public class AsyncDeathTestDebug {
public static void main(String[] args) throws Exception {
ProcessBuilder pb =
ProcessTools.createLimitedTestJavaProcessBuilder("-Xlog:async", "-Xlog:deathtest=debug");
ProcessTools.createLimitedTestJavaProcessBuilder("-Xlog:async", "-Xlog:all=debug");
OutputAnalyzer output = new OutputAnalyzer(pb.start());
output.shouldNotHaveExitValue(0);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
public class AsyncDeathNonProduct {
public static void main(String[] args) throws Exception {
ProcessBuilder pb =
ProcessTools.createLimitedTestJavaProcessBuilder("-Xlog:async", "-Xlog:deathtest=debug");
ProcessTools.createLimitedTestJavaProcessBuilder("-Xlog:async", "-Xlog:all=debug");
OutputAnalyzer output = new OutputAnalyzer(pb.start());
output.shouldHaveExitValue(0);
}
Expand Down

0 comments on commit 7d2cf5e

Please sign in to comment.