mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-11-23 12:02:58 -05:00
skip domain socket test on windows
This commit is contained in:
@@ -2,6 +2,7 @@ package scenarios
|
||||
|
||||
import (
|
||||
"os"
|
||||
"runtime"
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
@@ -143,6 +144,10 @@ func TestHttpConnectionHeader(t *testing.T) {
|
||||
}
|
||||
|
||||
func TestDomainSocket(t *testing.T) {
|
||||
if runtime.GOOS == "windows" {
|
||||
t.Skip("Not supported on windows")
|
||||
return
|
||||
}
|
||||
assert := With(t)
|
||||
|
||||
tcpServer := tcp.Server{
|
||||
|
||||
Reference in New Issue
Block a user