summaryrefslogtreecommitdiff
path: root/test/e2e
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2018-12-20 08:58:20 -0600
committerbaude <bbaude@redhat.com>2018-12-20 09:00:52 -0600
commit1f3726f2cf9ee4fcdb6c78dd2858e6c6bf135b05 (patch)
treee7dbbe1a7078e7586306881b8d7956afca2a4153 /test/e2e
parent65c5883f5c887c567bf0db30af1e178ac052261c (diff)
downloadpodman-1f3726f2cf9ee4fcdb6c78dd2858e6c6bf135b05.tar.gz
podman-1f3726f2cf9ee4fcdb6c78dd2858e6c6bf135b05.tar.bz2
podman-1f3726f2cf9ee4fcdb6c78dd2858e6c6bf135b05.zip
skip test for blkio.weight when kernel does not support it
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'test/e2e')
-rw-r--r--test/e2e/run_test.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/e2e/run_test.go b/test/e2e/run_test.go
index 2104991b2..d73d8662f 100644
--- a/test/e2e/run_test.go
+++ b/test/e2e/run_test.go
@@ -253,6 +253,9 @@ var _ = Describe("Podman run", func() {
})
It("podman run blkio-weight test", func() {
+ if _, err := os.Stat("/sys/fs/cgroup/blkio/blkio.weight"); os.IsNotExist(err) {
+ Skip("Kernel does not support blkio.weight")
+ }
session := podmanTest.Podman([]string{"run", "--rm", "--blkio-weight=15", ALPINE, "cat", "/sys/fs/cgroup/blkio/blkio.weight"})
session.WaitWithDefaultTimeout()
Expect(session.ExitCode()).To(Equal(0))