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
6 changes: 4 additions & 2 deletions test/lib/jdk/test/lib/containers/docker/DockerTestUtils.java
Original file line number Diff line number Diff line change
@@ -282,21 +282,23 @@ public static OutputAnalyzer execute(String... command) throws Exception {
System.out.println("[ELAPSED: " + (System.currentTimeMillis() - started) + " ms]");
System.out.println("[STDERR]\n" + output.getStderr());
System.out.println("[STDOUT]\n" +
trimLines(output.getStdout(), MAX_LINES_TO_COPY_FOR_CHILD_STDOUT));
trimLines(output.getStdout(),MAX_LINES_TO_COPY_FOR_CHILD_STDOUT));
System.out.printf("Child process STDOUT is trimmed to %d lines \n",
MAX_LINES_TO_COPY_FOR_CHILD_STDOUT);
MAX_LINES_TO_COPY_FOR_CHILD_STDOUT);
writeOutputToFile(output.getStdout(), stdoutLogFile);
System.out.println("Full child process STDOUT was saved to " + stdoutLogFile);

return output;
}


private static void writeOutputToFile(String output, String fileName) throws Exception {
try (FileWriter fw = new FileWriter(fileName)) {
fw.write(output, 0, output.length());
}
}


private static String trimLines(String buffer, int nrOfLines) {
List<String> l = Arrays.asList(buffer.split("\\R"));
if (l.size() < nrOfLines) {