From 10382d0bca6c6f23aa12e2877447f6f86a05c6dc Mon Sep 17 00:00:00 2001 From: Chris Evich Date: Fri, 17 Feb 2023 11:58:36 -0500 Subject: [PATCH] Skip buildx test with VFS podman storage driver Ref: https://github.com/containers/podman/issues/17520 Signed-off-by: Chris Evich --- test/system/070-build.bats | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/system/070-build.bats b/test/system/070-build.bats index 96c7cb91eb..c27186671f 100644 --- a/test/system/070-build.bats +++ b/test/system/070-build.bats @@ -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)