diff options
author | baude <bbaude@redhat.com> | 2018-01-31 14:21:47 -0600 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-02-06 01:17:54 +0000 |
commit | bf00c976dd7509b7d84d1fa5254f1ac26fc494e5 (patch) | |
tree | 168e559fbfcdbc0e0f07cd5cbce03f982677ef58 /test/e2e/rm_test.go | |
parent | 3609b82fe6f5fe268cdbe9f8aba43140c4e81f90 (diff) | |
download | podman-bf00c976dd7509b7d84d1fa5254f1ac26fc494e5.tar.gz podman-bf00c976dd7509b7d84d1fa5254f1ac26fc494e5.tar.bz2 podman-bf00c976dd7509b7d84d1fa5254f1ac26fc494e5.zip |
sysfs should be mounted rw for privileged
sysfs should be mounted rw for a privileged container.
Signed-off-by: baude <bbaude@redhat.com>
Closes: #279
Approved by: rhatdan
Diffstat (limited to 'test/e2e/rm_test.go')
-rw-r--r-- | test/e2e/rm_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/rm_test.go b/test/e2e/rm_test.go index a59b2ee01..ed0221dfd 100644 --- a/test/e2e/rm_test.go +++ b/test/e2e/rm_test.go @@ -45,7 +45,7 @@ var _ = Describe("Podman rm", func() { result := podmanTest.Podman([]string{"rm", cid}) result.WaitWithDefaultTimeout() - Expect(result.ExitCode()).To(Not(Equal(0))) + Expect(result.ExitCode()).To(Equal(125)) }) It("podman rm created container", func() { |