mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
25c5a55261
Premature check for OS type means that the test will never even get to run on other OS types. This will cause it to be always flagged as a failure on such OS types. Signed-off-by: vikrambirsingh <vikrambir.singh@docker.com>
29 lines
480 B
Go
29 lines
480 B
Go
package volumes // import "github.com/docker/docker/integration/plugin/volumes"
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/docker/docker/testutil/environment"
|
|
)
|
|
|
|
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)
|
|
}
|
|
err = environment.EnsureFrozenImagesLinux(testEnv)
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
os.Exit(1)
|
|
}
|
|
testEnv.Print()
|
|
os.Exit(m.Run())
|
|
}
|