2017-11-30 02:15:01 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/moby/buildkit/util/testutil/integration"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestCLIIntegration(t *testing.T) {
|
2017-11-30 02:49:04 +00:00
|
|
|
integration.Run(t, []integration.Test{
|
|
|
|
testDiskUsage,
|
2017-12-01 00:06:09 +00:00
|
|
|
testBuildWithLocalFiles,
|
2017-12-01 00:28:35 +00:00
|
|
|
testBuildLocalExporter,
|
2017-12-01 00:56:58 +00:00
|
|
|
testBuildContainerdExporter,
|
2017-11-30 02:49:04 +00:00
|
|
|
})
|
2017-11-30 02:15:01 +00:00
|
|
|
}
|