running tests in a container

This provides a dockerfile for building a container to run the containerd tests

Signed-off-by: Christopher Jones <tophj@linux.vnet.ibm.com>
This commit is contained in:
Christopher Jones
2018-01-03 15:11:40 -05:00
parent 0c07626faf
commit 051ac5dd63
6 changed files with 87 additions and 3 deletions

View File

@@ -29,7 +29,7 @@ func boltSnapshotter(t *testing.T) func(context.Context, string) (snapshots.Snap
return func(ctx context.Context, root string) (snapshots.Snapshotter, func() error, error) {
deviceName, cleanupDevice, err := testutil.NewLoopback(100 << 20) // 100 MB
deviceName, cleanupDevice, err := testutil.NewLoopback(150 << 20) // 150 MB
if err != nil {
return nil, nil, err
}