1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
From: Reinhard Tartler <siretart@tauware.de>
Date: Thu, 28 Nov 2024 09:21:03 -0500
Subject: e2e-test: Skip tests that don't currently work
These failures need to be investigated more closely
---
test/e2e/run_test.go | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/test/e2e/run_test.go b/test/e2e/run_test.go
index 7ccc1e7..f13917a 100644
--- a/test/e2e/run_test.go
+++ b/test/e2e/run_test.go
@@ -743,7 +743,8 @@ USER bin`, BB)
It("podman run limits host test", func() {
SkipIfRemote("This can only be used for local tests")
info := GetHostDistributionInfo()
- if info.Distribution == "debian" && isRootless() {
+ // Debian: This fails for both rootful and Rootless
+ if info.Distribution == "debian" {
// "expected 1048576 to be >= 1073741816"
Skip("FIXME 2024-09 still fails on debian rootless, reason unknown")
}
|