summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2020-08-27 06:02:04 -0400
committerGitHub <noreply@github.com>2020-08-27 06:02:04 -0400
commitd6b03772ad35eca82fb144a9d69ea16dcc44e183 (patch)
tree02a7da12453936ddfdd7a7da33931c6e783185df
parentf99954c7ca4428e501676fa47a63b5cecadd9454 (diff)
parent3c4f945425af06cb411c9852a95d14a097608ba9 (diff)
downloadpodman-d6b03772ad35eca82fb144a9d69ea16dcc44e183.tar.gz
podman-d6b03772ad35eca82fb144a9d69ea16dcc44e183.tar.bz2
podman-d6b03772ad35eca82fb144a9d69ea16dcc44e183.zip
Merge pull request #7438 from openSUSE/comment
Remove test comment for now-succeeding tests
-rw-r--r--test/system/075-exec.bats3
1 files changed, 0 insertions, 3 deletions
diff --git a/test/system/075-exec.bats b/test/system/075-exec.bats
index 5f71e2acb..e9db8c27e 100644
--- a/test/system/075-exec.bats
+++ b/test/system/075-exec.bats
@@ -90,7 +90,6 @@ load helpers
}
# #6829 : add username to /etc/passwd inside container if --userns=keep-id
-# #6593 : doesn't actually work with podman exec
@test "podman exec - with keep-id" {
run_podman run -d --userns=keep-id $IMAGE sh -c \
"echo READY;while [ ! -f /stop ]; do sleep 1; done"
@@ -100,8 +99,6 @@ load helpers
run_podman exec $cid id -un
is "$output" "$(id -un)" "container is running as current user"
- # Until #6593 gets fixed, this just hangs. The server process barfs with:
- # unable to find user <username>: no matching entries in passwd file
run_podman exec --user=$(id -un) $cid touch /stop
run_podman wait $cid
run_podman rm $cid