Skip buildx test with VFS podman storage driver

Ref: https://github.com/containers/podman/issues/17520

Signed-off-by: Chris Evich <cevich@redhat.com>
This commit is contained in:
Chris Evich 2023-02-17 11:58:36 -05:00
parent dd51b62b7a
commit 10382d0bca
No known key found for this signature in database
GPG Key ID: 03EDC70FD578067F
1 changed files with 5 additions and 0 deletions

View File

@ -30,6 +30,11 @@ EOF
}
@test "podman buildx - basic test" {
run_podman info --format "{{.Store.GraphDriverName}}"
if [[ "$output" == "vfs" ]]; then
skip "Test not supported with VFS podman storage driver (#17520)"
fi
rand_filename=$(random_string 20)
rand_content=$(random_string 50)