mirror of https://github.com/v2ray/v2ray-core
skip domain socket test on windows
parent
6e28b4f91d
commit
8070e7d1e2
|
@ -2,6 +2,7 @@ package scenarios
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"os"
|
"os"
|
||||||
|
"runtime"
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
@ -143,6 +144,10 @@ func TestHttpConnectionHeader(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestDomainSocket(t *testing.T) {
|
func TestDomainSocket(t *testing.T) {
|
||||||
|
if runtime.GOOS == "windows" {
|
||||||
|
t.Skip("Not supported on windows")
|
||||||
|
return
|
||||||
|
}
|
||||||
assert := With(t)
|
assert := With(t)
|
||||||
|
|
||||||
tcpServer := tcp.Server{
|
tcpServer := tcp.Server{
|
||||||
|
|
Loading…
Reference in New Issue