summaryrefslogtreecommitdiff
path: root/test/system/160-volumes.bats
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-09-18 15:13:05 -0400
committerGitHub <noreply@github.com>2021-09-18 15:13:05 -0400
commitddb384451147c4ef9d0307be0cc8dbad6d94970c (patch)
tree2460eb86558e6a3439a3f3e56a4d7c2b37634919 /test/system/160-volumes.bats
parenta9e95eb3274140318fe723dc60deb1627bfa31ec (diff)
parent22df773f779a81ab1c0efa67f7c4ae1d3f5b296a (diff)
downloadpodman-ddb384451147c4ef9d0307be0cc8dbad6d94970c.tar.gz
podman-ddb384451147c4ef9d0307be0cc8dbad6d94970c.tar.bz2
podman-ddb384451147c4ef9d0307be0cc8dbad6d94970c.zip
Merge pull request #11638 from edsantiago/bats
System tests: cleanup, and remove obsolete skips
Diffstat (limited to 'test/system/160-volumes.bats')
-rw-r--r--test/system/160-volumes.bats9
1 files changed, 5 insertions, 4 deletions
diff --git a/test/system/160-volumes.bats b/test/system/160-volumes.bats
index f6dc3f0af..e21be9ea4 100644
--- a/test/system/160-volumes.bats
+++ b/test/system/160-volumes.bats
@@ -21,8 +21,6 @@ function teardown() {
# Simple volume tests: share files between host and container
@test "podman run --volumes : basic" {
- skip_if_remote "volumes cannot be shared across hosts"
-
run_podman volume list --noheading
is "$output" "" "baseline: empty results from list --noheading"
@@ -192,9 +190,12 @@ EOF
run_podman volume create my_vol
run_podman run --rm -v my_vol:/data $IMAGE sh -c "echo hello >> /data/test"
run_podman volume create my_vol2
- run_podman volume export my_vol --output=hello.tar
+
+ tarfile=hello$(random_string | tr A-Z a-z).tar
+ run_podman volume export my_vol --output=$tarfile
# we want to use `run_podman volume export my_vol` but run_podman is wrapping EOF
- cat hello.tar | run_podman volume import my_vol2 -
+ run_podman volume import my_vol2 - < $tarfile
+ rm -f $tarfile
run_podman run --rm -v my_vol2:/data $IMAGE sh -c "cat /data/test"
is "$output" "hello" "output from second container"
run_podman volume rm my_vol