2018-03-27 14:03:23 -04:00
|
|
|
package volumes // import "github.com/docker/docker/integration/plugin/volumes"
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"testing"
|
|
|
|
|
2019-08-29 16:52:40 -04:00
|
|
|
"github.com/docker/docker/testutil/environment"
|
2018-03-27 14:03:23 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
testEnv *environment.Execution
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
|
|
|
var err error
|
|
|
|
testEnv, err = environment.New()
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
if testEnv.OSType != "linux" {
|
|
|
|
os.Exit(0)
|
|
|
|
}
|
|
|
|
err = environment.EnsureFrozenImagesLinux(testEnv)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
testEnv.Print()
|
|
|
|
os.Exit(m.Run())
|
|
|
|
}
|