diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-08-10 11:52:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-10 11:52:44 +0200 |
commit | d65cb664379117de527aeb253f1d4230998d2939 (patch) | |
tree | 8f066968a431a093547a3439d171d73bcae91b70 /test/system/070-build.bats | |
parent | b6e2bc3cc99c5819891efe1c77d03686b8707269 (diff) | |
parent | 5c108cdab4888c53fbe7d4cb546544cc5a4929aa (diff) | |
download | podman-d65cb664379117de527aeb253f1d4230998d2939.tar.gz podman-d65cb664379117de527aeb253f1d4230998d2939.tar.bz2 podman-d65cb664379117de527aeb253f1d4230998d2939.zip |
Merge pull request #3758 from edsantiago/bats
implement 'make remotesystem'
Diffstat (limited to 'test/system/070-build.bats')
-rw-r--r-- | test/system/070-build.bats | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/system/070-build.bats b/test/system/070-build.bats index c1e7c7ec4..5ef84e9b8 100644 --- a/test/system/070-build.bats +++ b/test/system/070-build.bats @@ -6,10 +6,8 @@ load helpers @test "podman build - basic test" { - if [[ "$PODMAN" =~ -remote ]]; then - if [ "$(id -u)" -ne 0 ]; then - skip "unreliable with podman-remote and rootless; #2972" - fi + if is_remote && is_rootless; then + skip "unreliable with podman-remote and rootless; #2972" fi rand_filename=$(random_string 20) |