From 723306d0ed80ce2ca01f8782daa673ca3db4645c Mon Sep 17 00:00:00 2001 From: Phil Estes Date: Wed, 6 Mar 2024 11:33:05 -0500 Subject: [PATCH] Disable OOM set score unpriv test temporarily Temporary skip while we find root cause of GHA environment changes causing failure. Signed-off-by: Phil Estes --- pkg/sys/oom_linux_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkg/sys/oom_linux_test.go b/pkg/sys/oom_linux_test.go index 7858b4efb..0a55e8cec 100644 --- a/pkg/sys/oom_linux_test.go +++ b/pkg/sys/oom_linux_test.go @@ -48,6 +48,9 @@ func TestSetNegativeOomScoreAdjustmentWhenPrivileged(t *testing.T) { } func TestSetNegativeOomScoreAdjustmentWhenUnprivilegedHasNoEffect(t *testing.T) { + // TODO: remove skip once we have determined cause of failure in GHA (2024-03-06) + t.Skip("test consistently failing in GitHub Actions") + if runningPrivileged() && !userns.RunningInUserNS() { t.Skip("needs to be run as non-root or in user namespace") return