From a93731374705188f1434001dd1deaf4af9c77fcd Mon Sep 17 00:00:00 2001 From: Solomon Hykes Date: Tue, 26 Nov 2013 04:48:03 +0000 Subject: [PATCH] Always use the 'vfs' storage driver in integration tests. To test other drivers, we need a dedicated driver validation suite. --- integration/runtime_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/integration/runtime_test.go b/integration/runtime_test.go index 69559f332b..1ab6d0a080 100644 --- a/integration/runtime_test.go +++ b/integration/runtime_test.go @@ -74,6 +74,9 @@ func layerArchive(tarfile string) (io.Reader, error) { } func init() { + // Always use the same driver (vfs) for all integration tests. + // To test other drivers, we need a dedicated driver validation suite. + os.Setenv("DOCKER_DRIVER", "vfs") os.Setenv("TEST", "1") // Hack to run sys init during unit testing