summaryrefslogtreecommitdiff
path: root/test/e2e/common_test.go
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@pm.me>2019-07-11 13:32:42 -0400
committerMatthew Heon <matthew.heon@pm.me>2019-08-05 14:40:28 -0400
commitc528d7a622267fcee0f38f25c94198b23deed9dd (patch)
tree5b4f6a4fe723428ee317fbcd6c0588506fac8233 /test/e2e/common_test.go
parent58b1b99982cdaad5e0d5eccaf008aa343f8fefd2 (diff)
downloadpodman-c528d7a622267fcee0f38f25c94198b23deed9dd.tar.gz
podman-c528d7a622267fcee0f38f25c94198b23deed9dd.tar.bz2
podman-c528d7a622267fcee0f38f25c94198b23deed9dd.zip
Use file-based eventer for integration tests
This adds several top-level Podman flags for specifying different events backend types, which are then used in CI. It resolves a number of serious issues with events-based testing. 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 8b6eab892..953e14f84 100644
--- a/test/e2e/common_test.go
+++ b/test/e2e/common_test.go
@@ -405,7 +405,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)