c8d/integration-cli: Skip TestListDanglingImagesWithDigests

Skip TestListDanglingImagesWithDigests which tests graphdriver
implementation specific behavior of `docker images --filter
dangling=true`.

Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com>
This commit is contained in:
Paweł Gronowski 2023-11-29 17:52:13 +01:00
parent f6533a1df1
commit fcb89da9c2
No known key found for this signature in database
GPG key ID: B85EFCFE26DEF92A

View file

@ -326,6 +326,9 @@ func (s *DockerRegistrySuite) TestListImagesWithDigests(c *testing.T) {
}
func (s *DockerRegistrySuite) TestListDanglingImagesWithDigests(c *testing.T) {
// See https://github.com/moby/moby/pull/46856
skip.If(c, testEnv.UsingSnapshotter(), "dangling=true filter behaves a bit differently with c8d")
// setup image1
digest1, err := setupImageWithTag(c, "dangle1")
assert.NilError(c, err, "error setting up image")