Explorar o código

fix test case on arm

Darien Raymond %!s(int64=7) %!d(string=hai) anos
pai
achega
1b39199adf
Modificáronse 1 ficheiros con 6 adicións e 0 borrados
  1. 6 0
      common/buf/reader_test.go

+ 6 - 0
common/buf/reader_test.go

@@ -3,6 +3,7 @@ package buf_test
 import (
 	"bytes"
 	"io"
+	"runtime"
 	"testing"
 
 	. "v2ray.com/core/common/buf"
@@ -11,6 +12,11 @@ import (
 )
 
 func TestAdaptiveReader(t *testing.T) {
+	if runtime.GOARCH != "amd64" {
+		t.Skip("Smart reader only works on highend devices.")
+		return
+	}
+
 	assert := With(t)
 
 	reader := NewReader(bytes.NewReader(make([]byte, 1024*1024)))