summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-08-23 07:41:39 -0400
committerGitHub <noreply@github.com>2021-08-23 07:41:39 -0400
commit1c4b085e547a6fcbe7c2ff17a5ae1e97fa41ec1f (patch)
tree826584f45484c2a53ed51740311e9b85ec4046d4 /test
parent2de56a5f41473e8f759972ec568089e9cddc0f98 (diff)
parent745f6d949c0f25ef998ab963293b9dca39892aac (diff)
downloadpodman-1c4b085e547a6fcbe7c2ff17a5ae1e97fa41ec1f.tar.gz
podman-1c4b085e547a6fcbe7c2ff17a5ae1e97fa41ec1f.tar.bz2
podman-1c4b085e547a6fcbe7c2ff17a5ae1e97fa41ec1f.zip
Merge pull request #11202 from chuanchang/fix_issue_11201
e2e tests: fix overlay: Unknown option vfs.imagestore
Diffstat (limited to 'test')
-rw-r--r--test/e2e/common_test.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/e2e/common_test.go b/test/e2e/common_test.go
index 6b97c4162..20ed72c59 100644
--- a/test/e2e/common_test.go
+++ b/test/e2e/common_test.go
@@ -264,6 +264,11 @@ func PodmanTestCreateUtil(tempDir string, remote bool) *PodmanTestIntegration {
if rootless.IsRootless() {
storageFs = ROOTLESS_STORAGE_FS
}
+ if os.Getenv("STORAGE_FS") != "" {
+ storageFs = os.Getenv("STORAGE_FS")
+ storageOptions = "--storage-driver " + storageFs
+ }
+
p := &PodmanTestIntegration{
PodmanTest: PodmanTest{
PodmanBinary: podmanBinary,