mirror of
https://github.com/moby/buildkit.git
synced 2026-08-09 09:11:45 +00:00
16 lines
298 B
Go
16 lines
298 B
Go
package main
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/moby/buildkit/util/testutil/integration"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func testDiskUsage(t *testing.T, sb integration.Sandbox) {
|
|
integration.SkipOnPlatform(t, "windows")
|
|
cmd := sb.Cmd("du")
|
|
err := cmd.Run()
|
|
require.NoError(t, err)
|
|
}
|