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