@@ -84,19 +84,19 @@ func TestRunCgroupV2(t *testing.T) {
84
84
"--memory" , "42m" ,
85
85
"--pids-limit" , "42" ,
86
86
"--cpu-shares" , "2000" , "--cpuset-cpus" , "0-1" ,
87
- "-w" , "/sys/fs/cgroup" , testutil .AlpineImage ,
87
+ "-w" , "/sys/fs/cgroup" , testutil .CommonImage ,
88
88
"cat" , "cpu.max" , "memory.max" , "memory.swap.max" ,
89
89
"pids.max" , "cpu.weight" , "cpuset.cpus" , "cpuset.mems" ).AssertOutExactly (expected1 )
90
90
base .Cmd ("run" , "--rm" ,
91
91
"--cpu-quota" , "42000" , "--cpuset-mems" , "0" ,
92
92
"--cpu-period" , "100000" , "--memory" , "42m" , "--memory-reservation" , "6m" , "--memory-swap" , "100m" ,
93
93
"--pids-limit" , "42" , "--cpu-shares" , "2000" , "--cpuset-cpus" , "0-1" ,
94
- "-w" , "/sys/fs/cgroup" , testutil .AlpineImage ,
94
+ "-w" , "/sys/fs/cgroup" , testutil .CommonImage ,
95
95
"cat" , "cpu.max" , "memory.max" , "memory.swap.max" , "memory.low" , "pids.max" ,
96
96
"cpu.weight" , "cpuset.cpus" , "cpuset.mems" ).AssertOutExactly (expected2 )
97
97
98
98
base .Cmd ("run" , "--name" , testutil .Identifier (t )+ "-testUpdate1" , "-w" , "/sys/fs/cgroup" , "-d" ,
99
- testutil .AlpineImage , "sleep" , "infinity" ).AssertOK ()
99
+ testutil .CommonImage , "sleep" , "infinity" ).AssertOK ()
100
100
defer base .Cmd ("rm" , "-f" , testutil .Identifier (t )+ "-testUpdate1" ).Run ()
101
101
update := []string {"update" , "--cpu-quota" , "42000" , "--cpuset-mems" , "0" , "--cpu-period" , "100000" ,
102
102
"--memory" , "42m" ,
@@ -115,7 +115,7 @@ func TestRunCgroupV2(t *testing.T) {
115
115
116
116
defer base .Cmd ("rm" , "-f" , testutil .Identifier (t )+ "-testUpdate2" ).Run ()
117
117
base .Cmd ("run" , "--name" , testutil .Identifier (t )+ "-testUpdate2" , "-w" , "/sys/fs/cgroup" , "-d" ,
118
- testutil .AlpineImage , "sleep" , "infinity" ).AssertOK ()
118
+ testutil .CommonImage , "sleep" , "infinity" ).AssertOK ()
119
119
base .EnsureContainerStarted (testutil .Identifier (t ) + "-testUpdate2" )
120
120
121
121
base .Cmd ("update" , "--cpu-quota" , "42000" , "--cpuset-mems" , "0" , "--cpu-period" , "100000" ,
@@ -165,8 +165,8 @@ func TestRunCgroupV1(t *testing.T) {
165
165
cpusetCpus := "/sys/fs/cgroup/cpuset/cpuset.cpus"
166
166
167
167
const expected = "42000\n 100000\n 0\n 44040192\n 6291456\n 104857600\n 0\n 42\n 2000\n 0-1\n "
168
- base .Cmd ("run" , "--rm" , "--cpus" , "0.42" , "--cpuset-mems" , "0" , "--memory" , "42m" , "--memory-reservation" , "6m" , "--memory-swap" , "100m" , "--memory-swappiness" , "0" , "--pids-limit" , "42" , "--cpu-shares" , "2000" , "--cpuset-cpus" , "0-1" , testutil .AlpineImage , "cat" , quota , period , cpusetMems , memoryLimit , memoryReservation , memorySwap , memorySwappiness , pidsLimit , cpuShare , cpusetCpus ).AssertOutExactly (expected )
169
- base .Cmd ("run" , "--rm" , "--cpu-quota" , "42000" , "--cpu-period" , "100000" , "--cpuset-mems" , "0" , "--memory" , "42m" , "--memory-reservation" , "6m" , "--memory-swap" , "100m" , "--memory-swappiness" , "0" , "--pids-limit" , "42" , "--cpu-shares" , "2000" , "--cpuset-cpus" , "0-1" , testutil .AlpineImage , "cat" , quota , period , cpusetMems , memoryLimit , memoryReservation , memorySwap , memorySwappiness , pidsLimit , cpuShare , cpusetCpus ).AssertOutExactly (expected )
168
+ base .Cmd ("run" , "--rm" , "--cpus" , "0.42" , "--cpuset-mems" , "0" , "--memory" , "42m" , "--memory-reservation" , "6m" , "--memory-swap" , "100m" , "--memory-swappiness" , "0" , "--pids-limit" , "42" , "--cpu-shares" , "2000" , "--cpuset-cpus" , "0-1" , testutil .CommonImage , "cat" , quota , period , cpusetMems , memoryLimit , memoryReservation , memorySwap , memorySwappiness , pidsLimit , cpuShare , cpusetCpus ).AssertOutExactly (expected )
169
+ base .Cmd ("run" , "--rm" , "--cpu-quota" , "42000" , "--cpu-period" , "100000" , "--cpuset-mems" , "0" , "--memory" , "42m" , "--memory-reservation" , "6m" , "--memory-swap" , "100m" , "--memory-swappiness" , "0" , "--pids-limit" , "42" , "--cpu-shares" , "2000" , "--cpuset-cpus" , "0-1" , testutil .CommonImage , "cat" , quota , period , cpusetMems , memoryLimit , memoryReservation , memorySwap , memorySwappiness , pidsLimit , cpuShare , cpusetCpus ).AssertOutExactly (expected )
170
170
}
171
171
172
172
func TestRunDevice (t * testing.T ) {
@@ -199,7 +199,7 @@ func TestRunDevice(t *testing.T) {
199
199
"--name" , containerName ,
200
200
"--device" , lo [0 ].Device + ":r" ,
201
201
"--device" , lo [1 ].Device ,
202
- testutil .AlpineImage , "sleep" , "infinity" ).Run ()
202
+ testutil .CommonImage , "sleep" , "infinity" ).Run ()
203
203
204
204
base .Cmd ("exec" , containerName , "cat" , lo [0 ].Device ).AssertOutContains (loContent [0 ])
205
205
base .Cmd ("exec" , containerName , "cat" , lo [1 ].Device ).AssertOutContains (loContent [1 ])
@@ -290,7 +290,7 @@ func TestRunCgroupConf(t *testing.T) {
290
290
if ! info .MemoryLimit {
291
291
t .Skip ("test requires MemoryLimit" )
292
292
}
293
- base .Cmd ("run" , "--rm" , "--cgroup-conf" , "memory.high=33554432" , "-w" , "/sys/fs/cgroup" , testutil .AlpineImage ,
293
+ base .Cmd ("run" , "--rm" , "--cgroup-conf" , "memory.high=33554432" , "-w" , "/sys/fs/cgroup" , testutil .CommonImage ,
294
294
"cat" , "memory.high" ).AssertOutExactly ("33554432\n " )
295
295
}
296
296
@@ -331,7 +331,7 @@ func TestRunCgroupParent(t *testing.T) {
331
331
containerName ,
332
332
"--cgroupns=host" ,
333
333
"--cgroup-parent" , parent ,
334
- testutil .AlpineImage ,
334
+ testutil .CommonImage ,
335
335
"sleep" ,
336
336
"infinity" ,
337
337
).AssertOK ()
@@ -364,7 +364,7 @@ func TestRunBlkioWeightCgroupV2(t *testing.T) {
364
364
containerName := testutil .Identifier (t )
365
365
defer base .Cmd ("rm" , "-f" , containerName ).AssertOK ()
366
366
// when bfq io scheduler is used, the io.weight knob is exposed as io.bfq.weight
367
- base .Cmd ("run" , "--name" , containerName , "--blkio-weight" , "300" , "-w" , "/sys/fs/cgroup" , testutil .AlpineImage , "sleep" , "infinity" ).AssertOK ()
367
+ base .Cmd ("run" , "--name" , containerName , "--blkio-weight" , "300" , "-w" , "/sys/fs/cgroup" , testutil .CommonImage , "sleep" , "infinity" ).AssertOK ()
368
368
base .Cmd ("exec" , containerName , "cat" , "io.bfq.weight" ).AssertOutExactly ("default 300\n " )
369
369
base .Cmd ("update" , containerName , "--blkio-weight" , "400" ).AssertOK ()
370
370
base .Cmd ("exec" , containerName , "cat" , "io.bfq.weight" ).AssertOutExactly ("default 400\n " )
0 commit comments