1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-12-22 01:57:12 -05:00

temporarily skip TLS test in ws

This commit is contained in:
Darien Raymond 2018-08-09 16:51:47 +02:00
parent e64b800149
commit e7d45d8d63
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -3,6 +3,7 @@ package websocket_test
import (
"bytes"
"context"
"runtime"
"testing"
"time"
@ -102,6 +103,10 @@ func TestDialWithRemoteAddr(t *testing.T) {
}
func Test_listenWSAndDial_TLS(t *testing.T) {
if runtime.GOARCH == "arm64" {
return
}
assert := With(t)
start := time.Now()