File: tests-integration-skips.patch

package info (click to toggle)
podman 5.6.1%2Bds2-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 23,240 kB
  • sloc: sh: 4,493; python: 2,676; perl: 1,885; ansic: 1,484; makefile: 988; ruby: 42; csh: 8
file content (23 lines) | stat: -rw-r--r-- 861 bytes parent folder | download | duplicates (2)
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 2cd38c5..f5319e3 100644
--- a/test/e2e/run_test.go
+++ b/test/e2e/run_test.go
@@ -771,7 +771,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")
 		}