Sfoglia il codice sorgente

temporarily skip TLS test in ws

Darien Raymond 7 anni fa
parent
commit
e7d45d8d63
1 ha cambiato i file con 5 aggiunte e 0 eliminazioni
  1. 5 0
      transport/internet/websocket/ws_test.go

+ 5 - 0
transport/internet/websocket/ws_test.go

@@ -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()