summaryrefslogtreecommitdiff
path: root/test/e2e/libpod_suite_test.go
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@pm.me>2019-07-16 16:04:51 -0400
committerMatthew Heon <matthew.heon@pm.me>2019-07-31 17:28:42 -0400
commitfd73075cbe91a4b38fe835b1f17bbabe0971bad9 (patch)
tree997432056c610439be013f1a2c95326149454dc6 /test/e2e/libpod_suite_test.go
parent8e8d1ac1933e3891c597ea1b12e434d365b7d164 (diff)
downloadpodman-fd73075cbe91a4b38fe835b1f17bbabe0971bad9.tar.gz
podman-fd73075cbe91a4b38fe835b1f17bbabe0971bad9.tar.bz2
podman-fd73075cbe91a4b38fe835b1f17bbabe0971bad9.zip
Force tests to use file backend for events
Podman-in-podman (and possibly ubuntu) have "issues" with journald. Let's just use file instead to be safe. Signed-off-by: Matthew Heon <matthew.heon@pm.me>
Diffstat (limited to 'test/e2e/libpod_suite_test.go')
-rw-r--r--test/e2e/libpod_suite_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/libpod_suite_test.go b/test/e2e/libpod_suite_test.go
index 8d993ee72..971911161 100644
--- a/test/e2e/libpod_suite_test.go
+++ b/test/e2e/libpod_suite_test.go
@@ -65,7 +65,7 @@ func (p *PodmanTestIntegration) makeOptions(args []string) []string {
debug = "--log-level=debug --syslog=true "
}
- podmanOptions := strings.Split(fmt.Sprintf("%s--root %s --runroot %s --runtime %s --conmon %s --cni-config-dir %s --cgroup-manager %s --tmpdir %s",
+ podmanOptions := strings.Split(fmt.Sprintf("%s--root %s --runroot %s --runtime %s --conmon %s --cni-config-dir %s --cgroup-manager %s --tmpdir %s --events-backend file",
debug, p.CrioRoot, p.RunRoot, p.OCIRuntime, p.ConmonBinary, p.CNIConfigDir, p.CgroupManager, p.TmpDir), " ")
if os.Getenv("HOOK_OPTION") != "" {
podmanOptions = append(podmanOptions, os.Getenv("HOOK_OPTION"))