Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions test/hotspot/jtreg/runtime/logging/StressAsyncUL.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ static void analyze_output(boolean stalling_mode, String... args) throws Excepti
}
}
public static void main(String[] args) throws Exception {
analyze_output(false, "-Xlog:async:drop", "-Xlog:all=trace", InnerClass.class.getName());
analyze_output(true, "-Xlog:async:stall", "-Xlog:all=trace", InnerClass.class.getName());
analyze_output(false, "-Xlog:async:drop", "-Xlog:all=debug", InnerClass.class.getName());
analyze_output(true, "-Xlog:async:stall", "-Xlog:all=debug", InnerClass.class.getName());
// Stress test with a very small buffer. Note: Any valid buffer size must be able to hold a flush token.
// Therefore the size of the buffer cannot be zero.
analyze_output(false, "-Xlog:async:drop", "-Xlog:all=trace", "-XX:AsyncLogBufferSize=192", InnerClass.class.getName());
analyze_output(true, "-Xlog:async:stall", "-Xlog:all=trace", "-XX:AsyncLogBufferSize=192", InnerClass.class.getName());
analyze_output(false, "-Xlog:async:drop", "-Xlog:all=debug", "-XX:AsyncLogBufferSize=192", InnerClass.class.getName());
analyze_output(true, "-Xlog:async:stall", "-Xlog:all=debug", "-XX:AsyncLogBufferSize=192", InnerClass.class.getName());
}

public static class InnerClass {
Expand Down