From 6ace3995f0e2f1abb23266afead89582c8595840 Mon Sep 17 00:00:00 2001 From: Simon Law Date: Wed, 10 Dec 2025 18:37:03 -0800 Subject: [PATCH] portlist: skip tests on Linux 6.14.x with /proc/net/tcp bug (#18185) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR #18033 skipped tests for the versions of Linux 6.6 and 6.12 that had a regression in /proc/net/tcp that causes seek operations to fail with “illegal seek”. This PR skips tests for Linux 6.14.0, which is the default Ubuntu kernel, that also contains this regression. Updates #16966 Signed-off-by: Simon Law --- portlist/portlist_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/portlist/portlist_test.go b/portlist/portlist_test.go index 791a8b118..8503b0fef 100644 --- a/portlist/portlist_test.go +++ b/portlist/portlist_test.go @@ -17,6 +17,7 @@ func maybeSkip(t *testing.T) { "https://github.com/tailscale/tailscale/issues/16966", "6.6.102", "6.6.103", "6.6.104", "6.12.42", "6.12.43", "6.12.44", "6.12.45", + "6.14.0", ) } }