diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-02-10 18:36:38 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-10 18:36:38 -0500 |
commit | db64865164b72af7017e9d3c34e75ee3bfd8546e (patch) | |
tree | dfea8a5dee7c99b4ae103a074e92fa805da85f93 /test | |
parent | 4d604c10897da33b7b3677631d219481cec11c7f (diff) | |
parent | 5ccb1596b444e15cbefa55e3315e742f091af9d4 (diff) | |
download | podman-db64865164b72af7017e9d3c34e75ee3bfd8546e.tar.gz podman-db64865164b72af7017e9d3c34e75ee3bfd8546e.tar.bz2 podman-db64865164b72af7017e9d3c34e75ee3bfd8546e.zip |
Merge pull request #9309 from baude/issue9303
Display correct value for unlimited ulimit
Diffstat (limited to 'test')
-rw-r--r-- | test/e2e/inspect_test.go | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/test/e2e/inspect_test.go b/test/e2e/inspect_test.go index 8fc9721f9..12bc886a8 100644 --- a/test/e2e/inspect_test.go +++ b/test/e2e/inspect_test.go @@ -466,4 +466,28 @@ var _ = Describe("Podman inspect", func() { Expect(len(inspect)).To(Equal(1)) Expect(len(inspect[0].NetworkSettings.Networks)).To(Equal(1)) }) + + It("Container inspect with unlimited uilimits should be -1", func() { + ctrName := "testctr" + session := podmanTest.Podman([]string{"run", "-d", "--ulimit", "core=-1:-1", "--name", ctrName, ALPINE, "top"}) + session.WaitWithDefaultTimeout() + Expect(session.ExitCode()).To(BeZero()) + + inspect := podmanTest.Podman([]string{"inspect", ctrName}) + inspect.WaitWithDefaultTimeout() + Expect(inspect.ExitCode()).To(BeZero()) + + data := inspect.InspectContainerToJSON() + ulimits := data[0].HostConfig.Ulimits + Expect(len(ulimits)).To(BeNumerically(">", 0)) + found := false + for _, ulimit := range ulimits { + if ulimit.Name == "RLIMIT_CORE" { + found = true + Expect(ulimit.Soft).To(BeNumerically("==", -1)) + Expect(ulimit.Hard).To(BeNumerically("==", -1)) + } + } + Expect(found).To(BeTrue()) + }) }) |