diff options
author | Valentin Rothberg <rothberg@redhat.com> | 2019-11-12 13:37:09 -0500 |
---|---|---|
committer | Valentin Rothberg <rothberg@redhat.com> | 2019-11-12 17:29:30 -0500 |
commit | bf62f9a5cfb4319aa9b0f25b57b3f63e4b965672 (patch) | |
tree | 48b0d6feb12f5d0135b5362b5ce4a34d9095d313 /test | |
parent | de32b89eff0928abdef9d85a420b65d8865e737e (diff) | |
download | podman-bf62f9a5cfb4319aa9b0f25b57b3f63e4b965672.tar.gz podman-bf62f9a5cfb4319aa9b0f25b57b3f63e4b965672.tar.bz2 podman-bf62f9a5cfb4319aa9b0f25b57b3f63e4b965672.zip |
history: rewrite mappings
Rewrite the backend for displaying the history of an image to simplify
the code and be closer to docker's behaviour. Instead of driving
index-based heuristics, create a reverse mapping from top-layers to the
corresponding image IDs and lookup the layers on-demand. Also use the
uncompressed layer size to be closer to Docker's behaviour.
Note that intermediate images from local builds are not considered for
the ID lookups anymore.
Fixes: #3359
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/e2e/images_test.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/e2e/images_test.go b/test/e2e/images_test.go index e125c62b4..80e6d4444 100644 --- a/test/e2e/images_test.go +++ b/test/e2e/images_test.go @@ -360,7 +360,6 @@ LABEL "com.example.vendor"="Example Vendor" session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(0)) output = session.OutputToString() - Expect(output).To(Not(MatchRegexp("<missing>"))) Expect(output).To(Not(MatchRegexp("error"))) session = podmanTest.Podman([]string{"history", "--quiet", "foo"}) |