chore: skip sudoku http mask test on windows again

This commit is contained in:
wwqgtxx
2026-04-14 22:26:16 +08:00
parent 700e25fd2f
commit a450080ed1
+5
View File
@@ -2,6 +2,7 @@ package inbound_test
import (
"net/netip"
"runtime"
"testing"
"github.com/metacubex/mihomo/adapter/outbound"
@@ -166,6 +167,10 @@ func TestInboundSudoku_CustomTable(t *testing.T) {
}
func TestInboundSudoku_HTTPMaskMode(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("temporarily skipped on windows due to intermittent failures; tracked in PR")
}
key := "test_key_http_mask_mode"
for _, mode := range []string{"ws", "stream", "poll", "auto"} {