diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-10-01 03:36:11 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-01 03:36:11 -0400 |
commit | 317e20a8d5a39088ea112f8321630aacfe27ddbc (patch) | |
tree | 934f83cc105ca3f619d07f7b41384c3d4c31a534 /test/system/030-run.bats | |
parent | f96c281f53cff68ac0715dac5da0f53eefa95b8b (diff) | |
parent | bf94ebf423931f6cd848126372fe558c8b956dcc (diff) | |
download | podman-317e20a8d5a39088ea112f8321630aacfe27ddbc.tar.gz podman-317e20a8d5a39088ea112f8321630aacfe27ddbc.tar.bz2 podman-317e20a8d5a39088ea112f8321630aacfe27ddbc.zip |
Merge pull request #11776 from edsantiago/bats_is_cleanup
System tests: tighten 'is' operator
Diffstat (limited to 'test/system/030-run.bats')
-rw-r--r-- | test/system/030-run.bats | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/test/system/030-run.bats b/test/system/030-run.bats index 3d9d834b3..4080f08b4 100644 --- a/test/system/030-run.bats +++ b/test/system/030-run.bats @@ -517,7 +517,8 @@ json-file | f cid="$output" run_podman inspect --format "{{.ImageName}}" $cid - is "$output" "$newtag" "container .ImageName is the container-create name" + is "$output" "$newtag:latest" \ + "container .ImageName is the container-create name" # Same thing, but now with a :tag, and making sure it works with --name newtag2="${newtag}:$(random_string 6|tr A-Z a-z)" @@ -526,7 +527,8 @@ json-file | f cname="$(random_string 14|tr A-Z a-z)" run_podman create --name $cname $newtag2 run_podman inspect --format "{{.ImageName}}" $cname - is "$output" "$newtag2" "container .ImageName is the container-create name" + is "$output" "$newtag2" \ + "container .ImageName is the container-create name, with :tag" # Clean up. run_podman rm $cid $cname @@ -718,7 +720,7 @@ EOF run_podman 125 run --device-cgroup-rule="b 7:2" --rm $IMAGE is "$output" 'Error: invalid device cgroup rule requires type, major:Minor, and access rules: "b 7:2"' run_podman 125 run --device-cgroup-rule="x 7:* rmw" --rm $IMAGE - is "$output" "Error: invalid device type in device-access-add:" + is "$output" "Error: invalid device type in device-access-add: x" run_podman 125 run --device-cgroup-rule="a a:* rmw" --rm $IMAGE is "$output" "Error: strconv.ParseInt: parsing \"a\": invalid syntax" } |