summaryrefslogtreecommitdiff
path: root/test/e2e/common_test.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-11-04 15:43:31 +0100
committerGitHub <noreply@github.com>2021-11-04 15:43:31 +0100
commitc0351a75ae1e4a74a633ac95f1d2ca9c7d96f044 (patch)
treebcfbdc98d05ac13f2c243ae770e6ab57998aa613 /test/e2e/common_test.go
parent8fdde67008ba599bb1a06d985ce773aa84090cec (diff)
parent0234b153cc99edcb2865dc42e43f1edf8b7fccdc (diff)
downloadpodman-c0351a75ae1e4a74a633ac95f1d2ca9c7d96f044.tar.gz
podman-c0351a75ae1e4a74a633ac95f1d2ca9c7d96f044.tar.bz2
podman-c0351a75ae1e4a74a633ac95f1d2ca9c7d96f044.zip
Merge pull request #12162 from giuseppe/run-split-test-in-separate-cgroup
test: run --cgroups=split in new cgroup
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 7228682f3..e598f7ab9 100644
--- a/test/e2e/common_test.go
+++ b/test/e2e/common_test.go
@@ -685,7 +685,7 @@ func SkipIfContainerized(reason string) {
// PodmanAsUser is the exec call to podman on the filesystem with the specified uid/gid and environment
func (p *PodmanTestIntegration) PodmanAsUser(args []string, uid, gid uint32, cwd string, env []string) *PodmanSessionIntegration {
- podmanSession := p.PodmanAsUserBase(args, uid, gid, cwd, env, false, false, nil)
+ podmanSession := p.PodmanAsUserBase(args, uid, gid, cwd, env, false, false, nil, nil)
return &PodmanSessionIntegration{podmanSession}
}