Adds conditional SkipCheck for storage driver tests
This commit is contained in:
parent
bac40b2b35
commit
ff81f3a719
4 changed files with 30 additions and 9 deletions
|
@ -19,6 +19,6 @@ func init() {
|
|||
filesystemDriverConstructor := func() (storagedriver.StorageDriver, error) {
|
||||
return NewDriver(rootDirectory), nil
|
||||
}
|
||||
testsuites.RegisterInProcessSuite(filesystemDriverConstructor)
|
||||
testsuites.RegisterIPCSuite("filesystem", map[string]string{"RootDirectory": rootDirectory})
|
||||
testsuites.RegisterInProcessSuite(filesystemDriverConstructor, testsuites.NeverSkip)
|
||||
testsuites.RegisterIPCSuite("filesystem", map[string]string{"RootDirectory": rootDirectory}, testsuites.NeverSkip)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue