summaryrefslogtreecommitdiff
path: root/test/e2e/common_test.go
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@pm.me>2019-07-17 15:28:40 -0400
committerMatthew Heon <matthew.heon@pm.me>2019-07-31 17:28:42 -0400
commit318438fcb3ee2ac57498d06fdfd1c5300147a738 (patch)
treea84b06448ab2b190bc4fdf786a32b06800028fbc /test/e2e/common_test.go
parentcdd5639d564624a6fbca426421d47c840dac8556 (diff)
downloadpodman-318438fcb3ee2ac57498d06fdfd1c5300147a738.tar.gz
podman-318438fcb3ee2ac57498d06fdfd1c5300147a738.tar.bz2
podman-318438fcb3ee2ac57498d06fdfd1c5300147a738.zip
Do not use an events backend when restoring images
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
Diffstat (limited to 'test/e2e/common_test.go')
-rw-r--r--test/e2e/common_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/common_test.go b/test/e2e/common_test.go
index 22eb94972..88cecc325 100644
--- a/test/e2e/common_test.go
+++ b/test/e2e/common_test.go
@@ -413,7 +413,7 @@ func (p *PodmanTestIntegration) BuildImage(dockerfile, imageName string, layers
// PodmanPID execs podman and returns its PID
func (p *PodmanTestIntegration) PodmanPID(args []string) (*PodmanSessionIntegration, int) {
- podmanOptions := p.MakeOptions(args)
+ podmanOptions := p.MakeOptions(args, false)
fmt.Printf("Running: %s %s\n", p.PodmanBinary, strings.Join(podmanOptions, " "))
command := exec.Command(p.PodmanBinary, podmanOptions...)
session, err := gexec.Start(command, GinkgoWriter, GinkgoWriter)