diff --git a/integration/image/import_test.go b/integration/image/import_test.go index 955891f288..2bb7ffbdc0 100644 --- a/integration/image/import_test.go +++ b/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)