From 28861e0c473b53682722f55b7d980d9dadccc5c8 Mon Sep 17 00:00:00 2001 From: Djordje Lukic Date: Mon, 18 Sep 2023 14:35:57 +0200 Subject: [PATCH] c8d: Skip TestRemoveImageGarbageCollector This test checks how the layer store works, so we don't need it when we use containerd as image store Signed-off-by: Djordje Lukic --- integration/image/remove_unix_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/integration/image/remove_unix_test.go b/integration/image/remove_unix_test.go index cee3a25a4d..a7ffafa614 100644 --- a/integration/image/remove_unix_test.go +++ b/integration/image/remove_unix_test.go @@ -33,6 +33,7 @@ func TestRemoveImageGarbageCollector(t *testing.T) { skip.If(t, testEnv.DaemonInfo.OSType != "linux") skip.If(t, testEnv.NotAmd64) skip.If(t, testEnv.IsRootless, "rootless mode doesn't support overlay2 on most distros") + skip.If(t, testEnv.UsingSnapshotter, "tests the graph driver layer store that's not used with the containerd image store") ctx := testutil.StartSpan(baseContext, t)