2015-04-27 10:53:12 -04:00
|
|
|
// +build linux
|
|
|
|
|
2018-02-05 16:05:59 -05:00
|
|
|
package vfs // import "github.com/docker/docker/daemon/graphdriver/vfs"
|
2014-04-30 08:43:51 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2014-11-11 06:02:14 -05:00
|
|
|
|
|
|
|
"github.com/docker/docker/daemon/graphdriver/graphtest"
|
|
|
|
|
|
|
|
"github.com/docker/docker/pkg/reexec"
|
2014-04-30 08:43:51 -04:00
|
|
|
)
|
|
|
|
|
2014-11-11 06:02:14 -05:00
|
|
|
func init() {
|
|
|
|
reexec.Init()
|
|
|
|
}
|
|
|
|
|
2014-04-30 08:43:51 -04:00
|
|
|
// This avoids creating a new driver for each test if all tests are run
|
|
|
|
// Make sure to put new tests between TestVfsSetup and TestVfsTeardown
|
|
|
|
func TestVfsSetup(t *testing.T) {
|
|
|
|
graphtest.GetDriver(t, "vfs")
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestVfsCreateEmpty(t *testing.T) {
|
|
|
|
graphtest.DriverTestCreateEmpty(t, "vfs")
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestVfsCreateBase(t *testing.T) {
|
|
|
|
graphtest.DriverTestCreateBase(t, "vfs")
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestVfsCreateSnap(t *testing.T) {
|
|
|
|
graphtest.DriverTestCreateSnap(t, "vfs")
|
|
|
|
}
|
|
|
|
|
2017-10-30 16:18:14 -04:00
|
|
|
func TestVfsSetQuota(t *testing.T) {
|
|
|
|
graphtest.DriverTestSetQuota(t, "vfs", false)
|
|
|
|
}
|
|
|
|
|
2014-04-30 08:43:51 -04:00
|
|
|
func TestVfsTeardown(t *testing.T) {
|
|
|
|
graphtest.PutDriver(t)
|
|
|
|
}
|