diff options
author | Sascha Grunert <sgrunert@suse.com> | 2020-08-25 15:26:34 +0200 |
---|---|---|
committer | Sascha Grunert <sgrunert@suse.com> | 2020-08-25 15:26:34 +0200 |
commit | 3c4f945425af06cb411c9852a95d14a097608ba9 (patch) | |
tree | 49156612fdaa94004e0daa6dc035f08b35ed1b8e /test | |
parent | 8fdc1169546421a239644159bbaf38db407f2b0f (diff) | |
download | podman-3c4f945425af06cb411c9852a95d14a097608ba9.tar.gz podman-3c4f945425af06cb411c9852a95d14a097608ba9.tar.bz2 podman-3c4f945425af06cb411c9852a95d14a097608ba9.zip |
Remove test comment for now succeeding tests
The related issue seems fixed so the test execution should work as
intended.
Signed-off-by: Sascha Grunert <sgrunert@suse.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/system/075-exec.bats | 3 |
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 |