diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-08-16 13:20:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-16 13:20:30 +0200 |
commit | 2d47f1ae5425faa6800606092e997bd565dc3a1c (patch) | |
tree | a661269aa2cf5342247062424b11edf5353e274d /test/e2e/common_test.go | |
parent | 14e0b40379a5446fce1f63140dd0e44a0a3e15ec (diff) | |
parent | a3fd890b8628121b2912398d156a844e9c440ff2 (diff) | |
download | podman-2d47f1ae5425faa6800606092e997bd565dc3a1c.tar.gz podman-2d47f1ae5425faa6800606092e997bd565dc3a1c.tar.bz2 podman-2d47f1ae5425faa6800606092e997bd565dc3a1c.zip |
Merge pull request #3796 from giuseppe/enable-cgroupsv2-crun
cirrus: enable cgroups v2 tests with crun
Diffstat (limited to 'test/e2e/common_test.go')
-rw-r--r-- | test/e2e/common_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/common_test.go b/test/e2e/common_test.go index b6dd1ecd1..4e9881d59 100644 --- a/test/e2e/common_test.go +++ b/test/e2e/common_test.go @@ -538,7 +538,7 @@ func (p *PodmanTestIntegration) RunHealthCheck(cid string) error { return nil } // Restart container if it's not running - ps := p.Podman([]string{"ps", "--no-trunc", "--q", "--filter", fmt.Sprintf("id=%s", cid)}) + ps := p.Podman([]string{"ps", "--no-trunc", "--quiet", "--filter", fmt.Sprintf("id=%s", cid)}) ps.WaitWithDefaultTimeout() if ps.ExitCode() == 0 { if !strings.Contains(ps.OutputToString(), cid) { |