summaryrefslogtreecommitdiff
path: root/test/e2e/run_test.go
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@pm.me>2019-02-13 11:41:20 -0500
committerMatthew Heon <matthew.heon@pm.me>2019-02-13 11:41:20 -0500
commit9d4e7fe58b10c4130340a151a377cf7be8aaa810 (patch)
tree42f32f7ef96c073949df391aec0fdd4e85a76699 /test/e2e/run_test.go
parentb1770ecc5b2eb2af900f5c57381165e5d1180e0a (diff)
downloadpodman-9d4e7fe58b10c4130340a151a377cf7be8aaa810.tar.gz
podman-9d4e7fe58b10c4130340a151a377cf7be8aaa810.tar.bz2
podman-9d4e7fe58b10c4130340a151a377cf7be8aaa810.zip
Try disabling --rm on notify_socket test
We have a consistent CI failure with the notify_socket test that I can't reproduce locally. There's no reason for the test to have --rm, so try removing it. Signed-off-by: Matthew Heon <matthew.heon@pm.me>
Diffstat (limited to 'test/e2e/run_test.go')
-rw-r--r--test/e2e/run_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/run_test.go b/test/e2e/run_test.go
index 22a36bb6c..6bd49de33 100644
--- a/test/e2e/run_test.go
+++ b/test/e2e/run_test.go
@@ -322,7 +322,7 @@ var _ = Describe("Podman run", func() {
os.Setenv("NOTIFY_SOCKET", sock)
defer os.Unsetenv("NOTIFY_SOCKET")
- session := podmanTest.Podman([]string{"run", "--rm", ALPINE, "printenv", "NOTIFY_SOCKET"})
+ session := podmanTest.Podman([]string{"run", ALPINE, "printenv", "NOTIFY_SOCKET"})
session.WaitWithDefaultTimeout()
Expect(session.ExitCode()).To(Equal(0))
Expect(len(session.OutputToStringArray())).To(BeNumerically(">", 0))