summaryrefslogtreecommitdiff
path: root/test/system
diff options
context:
space:
mode:
authoropenshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com>2022-07-01 11:13:49 +0000
committerGitHub <noreply@github.com>2022-07-01 11:13:49 +0000
commita737412eeb523c0fd925572f94dc4a189465e1d0 (patch)
treeaba5da829553c62ec9da6b44a241b8ba1c50ed11 /test/system
parentdc2a93421b184e7176a5893c515a907b542c762e (diff)
parent891dfd3a8f85c576ce6427b8dd9811b933d525d3 (diff)
downloadpodman-a737412eeb523c0fd925572f94dc4a189465e1d0.tar.gz
podman-a737412eeb523c0fd925572f94dc4a189465e1d0.tar.bz2
podman-a737412eeb523c0fd925572f94dc4a189465e1d0.zip
Merge pull request #14795 from giuseppe/fix-wildcard-major-device-cgroup
specgen: fix parsing of cgroup devices rule
Diffstat (limited to 'test/system')
-rw-r--r--test/system/030-run.bats2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/system/030-run.bats b/test/system/030-run.bats
index 56cf4f266..b3e3cef00 100644
--- a/test/system/030-run.bats
+++ b/test/system/030-run.bats
@@ -730,7 +730,7 @@ EOF
run_podman 125 run --device-cgroup-rule="x 7:* rmw" --rm $IMAGE
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"
+ is "$output" "Error: strconv.ParseUint: parsing \"a\": invalid syntax"
}
@test "podman run closes stdin" {