Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 0 additions & 17 deletions client/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@
testWhiteoutParentDir,
testFrontendImageNaming,
testDuplicateWhiteouts,
testSchema1Image,

Check failure on line 112 in client/client_test.go

View workflow job for this annotation

GitHub Actions / test (windows-2022)

undefined: testSchema1Image

Check failure on line 112 in client/client_test.go

View workflow job for this annotation

GitHub Actions / test (windows-2022)

undefined: testSchema1Image
testMountWithNoSource,
testInvalidExporter,
testReadonlyRootFS,
Expand Down Expand Up @@ -6129,23 +6129,6 @@
require.True(t, ok)
}

// #296
func testSchema1Image(t *testing.T, sb integration.Sandbox) {
c, err := New(sb.Context(), sb.Address())
require.NoError(t, err)
defer c.Close()

st := llb.Image("gcr.io/google_containers/pause:3.0@sha256:0d093c962a6c2dd8bb8727b661e2b5f13e9df884af9945b4cc7088d9350cd3ee")

def, err := st.Marshal(sb.Context())
require.NoError(t, err)

_, err = c.Solve(sb.Context(), def, SolveOpt{}, nil)
require.NoError(t, err)

checkAllReleasable(t, c, sb, true)
}

// #319
func testMountWithNoSource(t *testing.T, sb integration.Sandbox) {
c, err := New(sb.Context(), sb.Address())
Expand Down
Loading