mirror of
https://github.com/containers/podman.git
synced 2025-06-20 09:03:43 +08:00
Merge pull request #1768 from baude/pausecontainertests
Fix cleanup for "Pause a bunch of running containers"
This commit is contained in:
3
.papr.sh
3
.papr.sh
@ -139,6 +139,3 @@ if [ $integrationtest -eq 1 ]; then
|
||||
fi
|
||||
make ginkgo GOPATH=/go $INTEGRATION_TEST_ENVS
|
||||
fi
|
||||
|
||||
|
||||
exit 0
|
||||
|
@ -250,6 +250,10 @@ var _ = Describe("Podman pause", func() {
|
||||
running.WaitWithDefaultTimeout()
|
||||
Expect(running.ExitCode()).To(Equal(0))
|
||||
Expect(len(running.OutputToStringArray())).To(Equal(0))
|
||||
|
||||
unpause := podmanTest.Podman([]string{"unpause", "--all"})
|
||||
unpause.WaitWithDefaultTimeout()
|
||||
Expect(unpause.ExitCode()).To(Equal(0))
|
||||
})
|
||||
|
||||
It("Unpause a bunch of running containers", func() {
|
||||
|
Reference in New Issue
Block a user