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

8333446: Add tests for hierarchical container support #19530

Closed
wants to merge 20 commits into from
Closed
Changes from 2 commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
2ee2ccb
8333446: Add tests for hierarchical container support
jerboaa May 31, 2024
98d780a
Fix comments
jerboaa Jun 3, 2024
00b528a
Merge branch 'master' into jdk-8333446-systemd-slice-tests
jerboaa Jun 20, 2024
22141a4
Merge branch 'master' into jdk-8333446-systemd-slice-tests
jerboaa Jul 1, 2024
e19217c
Merge branch 'master' into jdk-8333446-systemd-slice-tests
jerboaa Jul 11, 2024
139a906
Add Whitebox check for host cpu
jerboaa Jul 11, 2024
2ced774
Merge branch 'master' into jdk-8333446-systemd-slice-tests
jerboaa Jul 22, 2024
eda249b
Merge branch 'master' into jdk-8333446-systemd-slice-tests
jerboaa Aug 20, 2024
ad7cf74
Merge branch 'master' into jdk-8333446-systemd-slice-tests
jerboaa Aug 28, 2024
7e8d9ed
Add root check for SystemdMemoryAwarenessTest.java
jerboaa Aug 28, 2024
495132f
Revert "Add root check for SystemdMemoryAwarenessTest.java"
jerboaa Aug 30, 2024
af90862
Add nested hierarchy to test framework
jerboaa Aug 30, 2024
6e87b05
Handle non-root + CGv2
jerboaa Aug 30, 2024
a98fd7d
Fix comment of WB::host_cpus()
jerboaa Aug 30, 2024
cf49a96
Merge branch 'master' into jdk-8333446-systemd-slice-tests
jerboaa Sep 3, 2024
65bf2d7
Merge branch 'master' into jdk-8333446-systemd-slice-tests
jerboaa Sep 4, 2024
30f32d2
Adapt JDK-8339148
jerboaa Sep 4, 2024
0e52e00
Improve reliability of cpu quota test
jerboaa Sep 10, 2024
335587e
Merge branch 'master' into jdk-8333446-systemd-slice-tests
jerboaa Sep 11, 2024
88298b9
Remove test from problem list as the bug is fixed
jerboaa Sep 11, 2024
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
Original file line number Diff line number Diff line change
@@ -33,17 +33,22 @@
*/
import java.nio.file.Files;
import java.nio.file.NoSuchFileException;
import jdk.test.lib.Platform;
import jdk.test.whitebox.WhiteBox;
import jdk.test.lib.containers.systemd.SystemdRunOptions;
import jdk.test.lib.containers.systemd.SystemdTestUtils;
import jdk.test.lib.containers.systemd.SystemdTestUtils.ResultFiles;

import jtreg.SkippedException;

public class SystemdMemoryAwarenessTest {

private static final WhiteBox wb = WhiteBox.getWhiteBox();

public static void main(String[] args) throws Exception {
if (!Platform.isRoot()) {
throw new SkippedException("Test requires to be run as root");
}
testHelloSystemd();
}