chore: don't test sing-mux over grpc

This commit is contained in:
wwqgtxx 2025-09-19 14:46:38 +08:00
parent 2222d0e3fa
commit 00638f30a7
3 changed files with 9 additions and 0 deletions

View File

@ -52,6 +52,9 @@ func testInboundTrojan(t *testing.T, inboundOptions inbound.TrojanOption, outbou
tunnel.DoTest(t, out) tunnel.DoTest(t, out)
if outboundOptions.Network == "grpc" { // don't test sing-mux over grpc
return
}
testSingMux(t, tunnel, out) testSingMux(t, tunnel, out)
} }

View File

@ -53,6 +53,9 @@ func testInboundVless(t *testing.T, inboundOptions inbound.VlessOption, outbound
tunnel.DoTest(t, out) tunnel.DoTest(t, out)
if outboundOptions.Network == "grpc" { // don't test sing-mux over grpc
return
}
testSingMux(t, tunnel, out) testSingMux(t, tunnel, out)
} }

View File

@ -54,6 +54,9 @@ func testInboundVMess(t *testing.T, inboundOptions inbound.VmessOption, outbound
tunnel.DoTest(t, out) tunnel.DoTest(t, out)
if outboundOptions.Network == "grpc" { // don't test sing-mux over grpc
return
}
testSingMux(t, tunnel, out) testSingMux(t, tunnel, out)
} }