diff options
author | Matthew Heon <mheon@redhat.com> | 2020-07-08 13:19:25 -0400 |
---|---|---|
committer | Matthew Heon <matthew.heon@pm.me> | 2020-07-15 10:04:42 -0400 |
commit | 9810e586fe4ec8d9325ae50a23acc0905a2454c3 (patch) | |
tree | 646c62ad13a88fc45ca7c717e7ee3d85967f7c4e /test | |
parent | 5262c53598ea579db0487587f60f088c68dc1190 (diff) | |
download | podman-9810e586fe4ec8d9325ae50a23acc0905a2454c3.tar.gz podman-9810e586fe4ec8d9325ae50a23acc0905a2454c3.tar.bz2 podman-9810e586fe4ec8d9325ae50a23acc0905a2454c3.zip |
Fix a bug where --pids-limit was parsed incorrectly
The --pids-limit flag was using strconv.ParseInt with bad
arguments, resulting in it being unable to parse standard
integers (1024, for example, would produce an 'out of range'
error).
Change the arguments to make sense (base 10, max 32-bit) and
add a test to ensure we don't regress again.
Fixes #6908
Signed-off-by: Matthew Heon <mheon@redhat.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/e2e/run_test.go | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/test/e2e/run_test.go b/test/e2e/run_test.go index fa52d2d05..d2950ed43 100644 --- a/test/e2e/run_test.go +++ b/test/e2e/run_test.go @@ -1015,4 +1015,21 @@ USER mail` Expect(session.ExitCode()).To(Equal(0)) } }) + + It("podman run verify pids-limit", func() { + cgroupsv2, err := cgroups.IsCgroup2UnifiedMode() + Expect(err).To(BeNil()) + + if !cgroupsv2 { + // Need v2 to ensure that cgroupfs looks the way we + // expect. + Skip("Test requires cgroups v2 to be enabled") + } + + limit := "4321" + session := podmanTest.Podman([]string{"run", "--pids-limit", limit, "--rm", ALPINE, "cat", "/sys/fs/cgroup/pids.max"}) + session.WaitWithDefaultTimeout() + Expect(session.ExitCode()).To(Equal(0)) + Expect(session.OutputToString()).To(ContainSubstring(limit)) + }) }) |