Merge pull request #5933 from claudiubelu/integration/import-multilayer

integration: Adds test for multilayer image import
This commit is contained in:
Phil Estes
2021-10-07 14:09:25 -04:00
committed by GitHub
3 changed files with 66 additions and 10 deletions

View File

@@ -33,9 +33,10 @@ const (
)
var (
testImage = "ghcr.io/containerd/busybox:1.32"
shortCommand = withProcessArgs("true")
longCommand = withProcessArgs("/bin/sh", "-c", "while true; do sleep 1; done")
testImage = "ghcr.io/containerd/busybox:1.32"
testMultiLayeredImage = "gcr.io/k8s-cri-containerd/volume-copy-up:2.1"
shortCommand = withProcessArgs("true")
longCommand = withProcessArgs("/bin/sh", "-c", "while true; do sleep 1; done")
)
func TestImagePullSchema1WithEmptyLayers(t *testing.T) {