-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
libct/cg/dev: skip flaky test of CentOS 7 #3778
Conversation
There is some kind of a race in CentOS 7 which sometimes result in one of these tests failing like this: systemd_test.go:136: mkdir /sys/fs/cgroup/hugetlb/system.slice/system-runc_test_pods.slice: no such file or directory or systemd_test.go:187: open /sys/fs/cgroup/cpuset/system.slice/system-runc_test_pods.slice/cpuset.mems: no such file or directory As this is only happening on CentOS 7, let's skip this test on this platform. Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
68028c6
to
a7a836e
Compare
It works:
|
@thaJeztah PTAL (easy to review one) |
centos-stream-9 CI failures is a different issue and is addressed by #3782 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
(Went looking if we could make it "pass" if it fails on CentOS 7, but looks like that requires multiple t.Fatal()
to be updated, so probably not worth the effort)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
1.1 backport: #3807 |
There is some kind of a race in CentOS 7 which sometimes result in one of these tests failing like this:
or
As this is only happening on CentOS 7, let's skip this test on this platform.
Fixes: #3743