diff options
author | chenkang <kongchen28@gmail.com> | 2021-04-17 22:30:43 +0800 |
---|---|---|
committer | chenkang <kongchen28@gmail.com> | 2021-04-17 22:30:43 +0800 |
commit | 4ce7aa6ee8aac132c4447d8a1be0fbce31d53bdc (patch) | |
tree | 9c36177c3ba7f0748f059a005809228d110bc65c /test/e2e/start_test.go | |
parent | 022bf589c8ee23783721038f7b9e536ac489add7 (diff) | |
download | podman-4ce7aa6ee8aac132c4447d8a1be0fbce31d53bdc.tar.gz podman-4ce7aa6ee8aac132c4447d8a1be0fbce31d53bdc.tar.bz2 podman-4ce7aa6ee8aac132c4447d8a1be0fbce31d53bdc.zip |
skip pidfile test on remote
Signed-off-by: chenkang <kongchen28@gmail.com>
Diffstat (limited to 'test/e2e/start_test.go')
-rw-r--r-- | test/e2e/start_test.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/e2e/start_test.go b/test/e2e/start_test.go index be724ab35..d5d12fc71 100644 --- a/test/e2e/start_test.go +++ b/test/e2e/start_test.go @@ -211,6 +211,7 @@ var _ = Describe("Podman start", func() { }) It("podman start container with special pidfile", func() { + SkipIfRemote("pidfile not handled by remote") pidfile := tempdir + "pidfile" session := podmanTest.Podman([]string{"create", "--pidfile", pidfile, ALPINE, "ls"}) session.WaitWithDefaultTimeout() |