2015-04-27 10:53:12 -04:00
|
|
|
// +build linux
|
|
|
|
|
2014-12-03 08:06:19 -05:00
|
|
|
package overlay
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2015-12-16 10:35:35 -05:00
|
|
|
|
|
|
|
"github.com/docker/docker/daemon/graphdriver/graphtest"
|
2014-12-03 08:06:19 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
// This avoids creating a new driver for each test if all tests are run
|
|
|
|
// Make sure to put new tests between TestOverlaySetup and TestOverlayTeardown
|
|
|
|
func TestOverlaySetup(t *testing.T) {
|
|
|
|
graphtest.GetDriver(t, "overlay")
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestOverlayCreateEmpty(t *testing.T) {
|
|
|
|
graphtest.DriverTestCreateEmpty(t, "overlay")
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestOverlayCreateBase(t *testing.T) {
|
|
|
|
graphtest.DriverTestCreateBase(t, "overlay")
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestOverlayCreateSnap(t *testing.T) {
|
|
|
|
graphtest.DriverTestCreateSnap(t, "overlay")
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestOverlayTeardown(t *testing.T) {
|
|
|
|
graphtest.PutDriver(t)
|
|
|
|
}
|