portlist: skip tests on Linux 6.14.x with /proc/net/tcp bug (#18185)

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 <sfllaw@tailscale.com>
This commit is contained in:
Simon Law
2025-12-10 18:37:03 -08:00
committed by GitHub
parent 6428ba01ef
commit 6ace3995f0

View File

@@ -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",
)
}
}