Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8284950: CgroupV1 detection code should consider memory.swappiness #8285

Closed
wants to merge 20 commits into from
3 changes: 1 addition & 2 deletions test/hotspot/jtreg/containers/docker/TestCgroupV1Memory.java
Original file line number Diff line number Diff line change
@@ -72,7 +72,6 @@ private static void testMemoryLimit() throws Exception {
}

private static void testMemoryLimitWithSwappiness() throws Exception {

CgroupV1TestUtils.initSubSystem(SUB_SYSTEM_NAME, "memory.swappiness=0");
OutputAnalyzer out = commonMemorySetting();
out.shouldContain("Memory Limit: 50.00M")
@@ -97,6 +96,6 @@ private static OutputAnalyzer commonMemorySetting() throws Exception {
OutputAnalyzer outputAnalyzer = CgroupV1TestUtils
.runJavaApp(subSystems, jvmOps , "PrintContainerInfo");
return outputAnalyzer;
}
}

}