From d6d3af9e8ebda9229a5d92d71c66e416c3f99a91 Mon Sep 17 00:00:00 2001 From: Ashley Cui Date: Fri, 4 Dec 2020 13:37:22 -0500 Subject: Add ability to set system wide options for slirp4netns Wire in containers.conf options for slirp Signed-off-by: Ashley Cui --- test/e2e/containers_conf_test.go | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'test/e2e/containers_conf_test.go') diff --git a/test/e2e/containers_conf_test.go b/test/e2e/containers_conf_test.go index 866162f7f..28672cfc6 100644 --- a/test/e2e/containers_conf_test.go +++ b/test/e2e/containers_conf_test.go @@ -258,6 +258,12 @@ var _ = Describe("Podman run", func() { Expect(session.OutputToString()).To(Equal("0002")) }) + It("podman set network cmd options slirp options to allow host loopback", func() { + session := podmanTest.Podman([]string{"run", "--network", "slirp4netns", ALPINE, "ping", "-c1", "10.0.2.2"}) + session.Wait(30) + Expect(session.ExitCode()).To(Equal(0)) + }) + It("podman-remote test localcontainers.conf versus remote containers.conf", func() { if !IsRemote() { Skip("this test is only for remote") @@ -311,4 +317,5 @@ var _ = Describe("Podman run", func() { Expect(session.ExitCode()).To(Equal(0)) Expect(session.OutputToString()).To(Equal("0022")) }) + }) -- cgit v1.2.3-54-g00ecf