File tree 2 files changed +12
-2
lines changed
hotspot/jtreg/containers/docker
jdk/jdk/internal/platform/docker
2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 40
40
import jdk .test .lib .containers .docker .DockerRunOptions ;
41
41
import jdk .test .lib .containers .docker .DockerTestUtils ;
42
42
import jdk .test .lib .Asserts ;
43
+ import jdk .test .lib .Container ;
43
44
import jdk .test .lib .Platform ;
44
45
import jdk .test .lib .Utils ;
45
46
46
47
public class TestPids {
47
48
private static final String imageName = Common .imageName ("pids" );
49
+ private static final boolean IS_PODMAN = Container .ENGINE_COMMAND .contains ("podman" );
50
+ private static final int UNLIMITED_PIDS_PODMAN = 0 ;
51
+ private static final int UNLIMITED_PIDS_DOCKER = -1 ;
48
52
49
53
static final String warning_kernel_no_pids_support = "WARNING: Your kernel does not support pids limit capabilities" ;
50
54
@@ -139,7 +143,8 @@ private static void testPids(String value) throws Exception {
139
143
140
144
DockerRunOptions opts = commonOpts ();
141
145
if (value .equals ("Unlimited" )) {
142
- opts .addDockerOpts ("--pids-limit=-1" );
146
+ int unlimited = IS_PODMAN ? UNLIMITED_PIDS_PODMAN : UNLIMITED_PIDS_DOCKER ;
147
+ opts .addDockerOpts ("--pids-limit=" + unlimited );
143
148
} else {
144
149
opts .addDockerOpts ("--pids-limit=" +value );
145
150
}
Original file line number Diff line number Diff line change 39
39
import jdk .test .lib .containers .docker .DockerTestUtils ;
40
40
import jdk .test .lib .process .OutputAnalyzer ;
41
41
import jdk .test .lib .Asserts ;
42
+ import jdk .test .lib .Container ;
42
43
43
44
public class TestPidsLimit {
44
45
private static final String imageName = Common .imageName ("pids" );
46
+ private static final boolean IS_PODMAN = Container .ENGINE_COMMAND .contains ("podman" );
47
+ private static final int UNLIMITED_PIDS_PODMAN = 0 ;
48
+ private static final int UNLIMITED_PIDS_DOCKER = -1 ;
45
49
46
50
public static void main (String [] args ) throws Exception {
47
51
if (!DockerTestUtils .canTestDocker ()) {
@@ -107,7 +111,8 @@ private static void testPidsLimit(String pidsLimit) throws Exception {
107
111
Common .logNewTestCase ("testPidsLimit (limit: " + pidsLimit + ")" );
108
112
DockerRunOptions opts = Common .newOptsShowSettings (imageName );
109
113
if (pidsLimit .equals ("Unlimited" )) {
110
- opts .addDockerOpts ("--pids-limit=-1" );
114
+ int unlimited = IS_PODMAN ? UNLIMITED_PIDS_PODMAN : UNLIMITED_PIDS_DOCKER ;
115
+ opts .addDockerOpts ("--pids-limit=" + unlimited );
111
116
} else {
112
117
opts .addDockerOpts ("--pids-limit=" +pidsLimit );
113
118
}
You can’t perform that action at this time.
0 commit comments