diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-10-29 13:30:29 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-29 13:30:29 +0000 |
commit | 1305902ff40989099ffe13efd32458565cbc11c6 (patch) | |
tree | 3750a1ca50331ab7a0a9c84901ce8071f7894188 /test | |
parent | 584049325b4d04ec512ff9c2284cdd00b01c73d0 (diff) | |
parent | c5f0a5d788dafd94ea609b82d94cd089b30a7073 (diff) | |
download | podman-1305902ff40989099ffe13efd32458565cbc11c6.tar.gz podman-1305902ff40989099ffe13efd32458565cbc11c6.tar.bz2 podman-1305902ff40989099ffe13efd32458565cbc11c6.zip |
Merge pull request #12127 from vrothberg/bz-2014149
volumes: be more tolerant and fix infinite loop
Diffstat (limited to 'test')
-rw-r--r-- | test/system/070-build.bats | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/system/070-build.bats b/test/system/070-build.bats index d3dc14d81..1d24eef15 100644 --- a/test/system/070-build.bats +++ b/test/system/070-build.bats @@ -39,6 +39,7 @@ EOF cat >$dockerfile <<EOF FROM $IMAGE RUN echo $rand_content > /$rand_filename +VOLUME ['/etc/foo', '/etc/bar'] EOF run_podman buildx build --load -t build_test --format=docker $tmpdir @@ -47,6 +48,14 @@ EOF run_podman run --rm build_test cat /$rand_filename is "$output" "$rand_content" "reading generated file in image" + # Make sure the volumes are created at surprising yet Docker-compatible + # destinations (see bugzilla.redhat.com/show_bug.cgi?id=2014149). + run_podman run --rm build_test find /[ /etc/bar\] -print + is "$output" "/\[ +/\[/etc +/\[/etc/foo, +/etc/bar]" "weird VOLUME gets converted to directories with brackets and comma" + run_podman rmi -f build_test } |