-
Notifications
You must be signed in to change notification settings - Fork 18.9k
c8d: Skip TestRemoveImageGarbageCollector #46507
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
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 <djordje.lukic@docker.com>
| } | ||
|
|
||
| func (s *DockerDaemonSuite) TestRemoveContainerAfterLiveRestore(c *testing.T) { | ||
| testRequires(c, DaemonIsLinux, overlayFSSupported, testEnv.IsLocalDaemon) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is the overlayFSSupported still need if we remove the --storage-driver option?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed ;)
4b46dfd to
7e0eb8a
Compare
thaJeztah
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There is no need to pass the storage driver to the daemon the test starts Signed-off-by: Djordje Lukic <djordje.lukic@docker.com>
7e0eb8a to
6c563cd
Compare
|
Failure on Ubuntu is this one (I think I've seen it fail a few times; looks like it's flaky, perhaps we need a tracking ticket if we don't have one yet); |
|
Opened an issue #46508 |
- What I did
TestRemoveImageGarbageCollector, it tests the layer storeTestRemoveContainerAfterLiveRestore, there is no need to pass the storage driver when starting the daemon- How I did it
- How to verify it
- Description for the changelog
- A picture of a cute animal (not mandatory but encouraged)
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 djordje.lukic@docker.com