diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-08-23 07:41:39 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-23 07:41:39 -0400 |
commit | 1c4b085e547a6fcbe7c2ff17a5ae1e97fa41ec1f (patch) | |
tree | 826584f45484c2a53ed51740311e9b85ec4046d4 /test/e2e/common_test.go | |
parent | 2de56a5f41473e8f759972ec568089e9cddc0f98 (diff) | |
parent | 745f6d949c0f25ef998ab963293b9dca39892aac (diff) | |
download | podman-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/e2e/common_test.go')
-rw-r--r-- | test/e2e/common_test.go | 5 |
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, |