diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-08-04 14:58:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-04 14:58:35 +0200 |
commit | 6aed1076a21bc913210efd1f6ad7377dfd85a9f2 (patch) | |
tree | 3c5e6fe3267f360704ce5b10237ce884702b16c0 /test/system/030-run.bats | |
parent | 7eca5571dc9d39590bc0127f15257921dea30c55 (diff) | |
parent | a4fcf09b7ab5daa30b37705702ba2c2e30e8f9c5 (diff) | |
download | podman-6aed1076a21bc913210efd1f6ad7377dfd85a9f2.tar.gz podman-6aed1076a21bc913210efd1f6ad7377dfd85a9f2.tar.bz2 podman-6aed1076a21bc913210efd1f6ad7377dfd85a9f2.zip |
Merge pull request #7111 from edsantiago/reenable_remote_system_tests
Reenable remote system tests
Diffstat (limited to 'test/system/030-run.bats')
-rw-r--r-- | test/system/030-run.bats | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/system/030-run.bats b/test/system/030-run.bats index b30c1103b..e93a2efe2 100644 --- a/test/system/030-run.bats +++ b/test/system/030-run.bats @@ -96,6 +96,8 @@ echo $rand | 0 | $rand # Believe it or not, 'sh -c' resulted in different behavior run_podman 0 run --rm $IMAGE sh -c /bin/true run_podman 1 run --rm $IMAGE sh -c /bin/false + + if is_remote; then sleep 2;fi # FIXME: pending #7119 } @test "podman run --name" { @@ -202,6 +204,8 @@ echo $rand | 0 | $rand } @test "podman run docker-archive" { + skip_if_remote "FIXME: pending #7116" + # Create an image that, when run, outputs a random magic string expect=$(random_string 20) run_podman run --name myc --entrypoint="[\"/bin/echo\",\"$expect\"]" $IMAGE @@ -247,6 +251,8 @@ echo $rand | 0 | $rand # symptom only manifests on a fedora container image -- we have no # reproducer on alpine. Checking directory ownership is good enough. @test "podman run : user namespace preserved root ownership" { + skip_if_remote "FIXME: pending #7195" + for priv in "" "--privileged"; do for user in "--user=0" "--user=100"; do for keepid in "" "--userns=keep-id"; do @@ -260,10 +266,14 @@ echo $rand | 0 | $rand done done done + + if is_remote; then sleep 2;fi # FIXME: pending #7119 } # #6829 : add username to /etc/passwd inside container if --userns=keep-id @test "podman run : add username to /etc/passwd if --userns=keep-id" { + skip_if_remote "FIXME: pending #7195" + # Default: always run as root run_podman run --rm $IMAGE id -un is "$output" "root" "id -un on regular container" @@ -282,10 +292,14 @@ echo $rand | 0 | $rand run_podman run --rm --privileged --userns=keep-id --user=0 $IMAGE id -un remove_same_dev_warning # grumble is "$output" "root" "--user=0 overrides keep-id" + + if is_remote; then sleep 2;fi # FIXME: pending #7119 } # #6991 : /etc/passwd is modifiable @test "podman run : --userns=keep-id: passwd file is modifiable" { + skip_if_remote "FIXME: pending #7195" + run_podman run -d --userns=keep-id $IMAGE sh -c 'while ! test -e /stop; do sleep 0.1; done' cid="$output" |