summaryrefslogtreecommitdiff
path: root/test/system/070-build.bats
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-04-25 06:28:40 -0700
committerGitHub <noreply@github.com>2019-04-25 06:28:40 -0700
commitee8488555b2a105bb48e8bf049133889e5e34bdf (patch)
treeb45c99fd05c6e9349ddfcba83559d2bc1aaa135f /test/system/070-build.bats
parentbc98f1c736f7559affd47b3f006b5a4151b82dab (diff)
parent78bd2eac0637fdcd93afbb6f9069b016d826e12c (diff)
downloadpodman-ee8488555b2a105bb48e8bf049133889e5e34bdf.tar.gz
podman-ee8488555b2a105bb48e8bf049133889e5e34bdf.tar.bz2
podman-ee8488555b2a105bb48e8bf049133889e5e34bdf.zip
Merge pull request #2974 from edsantiago/bats
bats - various small updates
Diffstat (limited to 'test/system/070-build.bats')
-rw-r--r--test/system/070-build.bats6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/system/070-build.bats b/test/system/070-build.bats
index c6a25093f..53acf6edd 100644
--- a/test/system/070-build.bats
+++ b/test/system/070-build.bats
@@ -6,7 +6,11 @@
load helpers
@test "podman build - basic test" {
- skip_if_remote
+ if [[ "$PODMAN" =~ -remote ]]; then
+ if [ "$(id -u)" -ne 0 ]; then
+ skip "unreliable with podman-remote and rootless; #2972"
+ fi
+ fi
rand_filename=$(random_string 20)
rand_content=$(random_string 50)