diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-09-29 01:45:20 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-29 01:45:20 +0000 |
commit | 4a7fb62adcbb8d5f2bc8e45273748301d12375a7 (patch) | |
tree | ca0a74a6c5f94e4351681fd05e115c17ea4a6f5e /test/system/070-build.bats | |
parent | e7e466e0c80339e252d748e5aa5d54a6962da7b4 (diff) | |
parent | 1f78d33f7600283a235ca04d4cb0f2b2ac550927 (diff) | |
download | podman-4a7fb62adcbb8d5f2bc8e45273748301d12375a7.tar.gz podman-4a7fb62adcbb8d5f2bc8e45273748301d12375a7.tar.bz2 podman-4a7fb62adcbb8d5f2bc8e45273748301d12375a7.zip |
Merge pull request #7803 from edsantiago/bats
System tests: reenable some skipped tests
Diffstat (limited to 'test/system/070-build.bats')
-rw-r--r-- | test/system/070-build.bats | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/system/070-build.bats b/test/system/070-build.bats index e3a139b4f..1329c6168 100644 --- a/test/system/070-build.bats +++ b/test/system/070-build.bats @@ -268,6 +268,14 @@ Labels.$label_name | $label_value is "${lines[-1]}" "... ID: [0-9a-f]\{12\} Size: .* Top Layer of: \[localhost/build_test:latest]" \ "image tree: last layer line" + # FIXME: 'image tree --whatrequires' does not work via remote + if ! is_remote; then + run_podman image tree --whatrequires $IMAGE + is "${lines[-1]}" \ + ".*ID: .* Top Layer of: \\[localhost/build_test:latest\\]" \ + "'image tree --whatrequires' shows our built image" + fi + # Clean up run_podman rmi -f build_test } |