Ver Fonte

Merge pull request #35572 from arm64b/big-image-imp-test-aarch64

image: skip the import test on AArch64
Vincent Demeester há 7 anos atrás
pai
commit
c307e0ce49
1 ficheiros alterados com 6 adições e 0 exclusões
  1. 6 0
      integration/image/import_test.go

+ 6 - 0
integration/image/import_test.go

@@ -5,6 +5,7 @@ import (
 	"bytes"
 	"context"
 	"io"
+	"runtime"
 	"testing"
 
 	"github.com/docker/docker/api/types"
@@ -14,12 +15,17 @@ import (
 
 // Ensure we don't regress on CVE-2017-14992.
 func TestImportExtremelyLargeImageWorks(t *testing.T) {
+	if runtime.GOARCH == "arm64" {
+		t.Skip("effective test will be time out")
+	}
+
 	client := request.NewAPIClient(t)
 
 	// Construct an empty tar archive with about 8GB of junk padding at the
 	// end. This should not cause any crashes (the padding should be mostly
 	// ignored).
 	var tarBuffer bytes.Buffer
+
 	tw := tar.NewWriter(&tarBuffer)
 	if err := tw.Close(); err != nil {
 		t.Fatal(err)