diff options
author | Ed Santiago <santiago@redhat.com> | 2019-04-10 09:39:52 -0600 |
---|---|---|
committer | Ed Santiago <santiago@redhat.com> | 2019-04-18 15:39:21 -0600 |
commit | 78bd2eac0637fdcd93afbb6f9069b016d826e12c (patch) | |
tree | 971c82de06549d873fc04abcc79f64626b4734c8 /test/system/070-build.bats | |
parent | e4947e5fd699f584cb815a4f4fd92f22b62f2c8a (diff) | |
download | podman-78bd2eac0637fdcd93afbb6f9069b016d826e12c.tar.gz podman-78bd2eac0637fdcd93afbb6f9069b016d826e12c.tar.bz2 podman-78bd2eac0637fdcd93afbb6f9069b016d826e12c.zip |
bats - various small updates
- podman-remote:
- enable log, run and build tests, they're working now
- well, except build + rootless. Skip that one.
- add explanation of why info test is skipped
- Giuseppe's permission test:
- validate GraphRoot and RunRoot values
- add verbose logging, to enable seeing full directory tree
permissions on error
Signed-off-by: Ed Santiago <santiago@redhat.com>
Diffstat (limited to 'test/system/070-build.bats')
-rw-r--r-- | test/system/070-build.bats | 6 |
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) |