mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
69bab3832c
All `plugins` tests that require an `ExperimentalDaemon` are migrated to `integration/plugin/*` and start an experimental daemon to test on it. The end goal being to remove the `experimental` build. Signed-off-by: Vincent Demeester <vincent@sbr.pm>
36 lines
648 B
Go
36 lines
648 B
Go
package graphdriver // import "github.com/docker/docker/integration/plugin/graphdriver"
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/docker/docker/internal/test/environment"
|
|
"github.com/docker/docker/pkg/reexec"
|
|
)
|
|
|
|
var (
|
|
testEnv *environment.Execution
|
|
)
|
|
|
|
func init() {
|
|
reexec.Init() // This is required for external graphdriver tests
|
|
}
|
|
|
|
const dockerdBinary = "dockerd"
|
|
|
|
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())
|
|
}
|