File: tests-integration-skips.patch

package info (click to toggle)
podman 5.4.2%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 23,124 kB
  • sloc: sh: 6,119; perl: 2,710; python: 2,258; ansic: 1,556; makefile: 1,022; xml: 121; ruby: 42; awk: 12; csh: 8
file content (23 lines) | stat: -rw-r--r-- 861 bytes parent folder | download
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")
 		}