From 287f9e518571db670bb95789c1854f161fdbcf1c Mon Sep 17 00:00:00 2001 From: wwqgtxx Date: Tue, 23 Dec 2025 23:49:19 +0800 Subject: [PATCH] chore: temporarily skip mieru inbound test in go1.26 on windows --- listener/inbound/mieru_test.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/listener/inbound/mieru_test.go b/listener/inbound/mieru_test.go index 12aa680c..d57f4df5 100644 --- a/listener/inbound/mieru_test.go +++ b/listener/inbound/mieru_test.go @@ -3,7 +3,9 @@ package inbound_test import ( "net" "net/netip" + "runtime" "strconv" + "strings" "testing" "github.com/metacubex/mihomo/adapter/outbound" @@ -149,6 +151,9 @@ func TestNewMieru(t *testing.T) { } func TestInboundMieru(t *testing.T) { + if runtime.GOOS == "windows" && strings.HasPrefix(runtime.Version(), "go1.26") { + t.Skip("temporarily skipped on windows due to intermittent failures; tracked in PR") + } t.Run("TCP_HANDSHAKE_STANDARD", func(t *testing.T) { testInboundMieruTCP(t, "HANDSHAKE_STANDARD") })