diff options
author | Brent Baude <bbaude@redhat.com> | 2020-07-13 10:34:41 -0500 |
---|---|---|
committer | Brent Baude <bbaude@redhat.com> | 2020-07-13 17:11:26 -0500 |
commit | 99cc07670099cbfa4bfc2dc7b24b39b254bc9561 (patch) | |
tree | 70c86f1e9b77595505c820b03eab4edd3feae580 /test/e2e/systemd_test.go | |
parent | e2a8e037d1c3a2176cd15493812bf165faea63f2 (diff) | |
download | podman-99cc07670099cbfa4bfc2dc7b24b39b254bc9561.tar.gz podman-99cc07670099cbfa4bfc2dc7b24b39b254bc9561.tar.bz2 podman-99cc07670099cbfa4bfc2dc7b24b39b254bc9561.zip |
Fix systemd pid 1 test
fedora removed the systemd package from its standard container image causing our systemd pid1 test to fail. Replacing usage of fedora to ubi-init.
adding ubi images to the cache for local tests.
also, remove installation of test/policy.json to the system wide /etc/containers
Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'test/e2e/systemd_test.go')
-rw-r--r-- | test/e2e/systemd_test.go | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/test/e2e/systemd_test.go b/test/e2e/systemd_test.go index 3db8fc3a6..a1cdff70e 100644 --- a/test/e2e/systemd_test.go +++ b/test/e2e/systemd_test.go @@ -81,13 +81,8 @@ WantedBy=multi-user.target }) It("podman run container with systemd PID1", func() { - systemdImage := "fedora" - pull := podmanTest.Podman([]string{"pull", systemdImage}) - pull.WaitWithDefaultTimeout() - Expect(pull.ExitCode()).To(Equal(0)) - ctrName := "testSystemd" - run := podmanTest.Podman([]string{"run", "--name", ctrName, "-t", "-i", "-d", systemdImage, "/usr/sbin/init"}) + run := podmanTest.Podman([]string{"run", "--name", ctrName, "-t", "-i", "-d", ubi_init, "/sbin/init"}) run.WaitWithDefaultTimeout() Expect(run.ExitCode()).To(Equal(0)) ctrID := run.OutputToString() |