1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
From: Reinhard Tartler <siretart@tauware.de>
Date: Tue, 11 Nov 2025 09:32:59 -0500
Subject: TestProcRoot: Skip on test setup failures
this test seems to fail (sometimes) on salsa-ci
---
pathrs-lite/internal/procfs/procfs_linux_test.go | 3 +++
pathrs-lite/procfs/procfs_linux_test.go | 1 +
2 files changed, 4 insertions(+)
diff --git a/pathrs-lite/internal/procfs/procfs_linux_test.go b/pathrs-lite/internal/procfs/procfs_linux_test.go
index 141c8cf..400a013 100644
--- a/pathrs-lite/internal/procfs/procfs_linux_test.go
+++ b/pathrs-lite/internal/procfs/procfs_linux_test.go
@@ -509,6 +509,9 @@ func TestProcRoot(t *testing.T) {
t := ti.(*testing.T) //nolint:forcetypeassert // guaranteed to be true and in test code
t.Run("sysctl", func(t *testing.T) {
handle, err := proc.OpenRoot("sys/kernel/version")
+ if (err != nil) {
+ t.Skipf("Test setup failed: %v", err)
+ }
require.NoError(t, err, "ProcRoot(sys/kernel/version)")
require.NotNil(t, handle, "ProcPid(sys/kernel/version) handle")
diff --git a/pathrs-lite/procfs/procfs_linux_test.go b/pathrs-lite/procfs/procfs_linux_test.go
index f6f9d68..35c3d3b 100644
--- a/pathrs-lite/procfs/procfs_linux_test.go
+++ b/pathrs-lite/procfs/procfs_linux_test.go
@@ -135,6 +135,7 @@ func TestProcRoot(t *testing.T) {
})
t.Run("OpenRoot", func(t *testing.T) {
+ t.Skip("Debian: doesn't work reliably in lxc")
uptime, err := proc.OpenRoot("uptime")
require.NoError(t, err, "open /proc/uptime")
require.NotNil(t, uptime, "open /proc/uptime")
|