Skip to content

Commit

Permalink
[0.8] TestClientGatewayIntegration/TestClientGatewayExecError on stargz
Browse files Browse the repository at this point in the history
It's failing on go1.18 bullseye, and this branch is only used for vendoring in
moby/moby, which doesn't use this.

```
=== CONT  TestClientGatewayIntegration/TestClientGatewayExecError/worker=containerd-snapshotter-stargz/rootfs_and_readwrite_scratch_mount
    build_test.go:1215:
        	Error Trace:	build_test.go:1215
        	Error:      	Not equal:
        	            	expected: "7lm22fjwmcq5lhh70drzvtqjc"
        	            	actual  : ""
        	            	Diff:
        	            	--- Expected
        	            	+++ Actual
        	            	@@ -1 +1 @@
        	            	-7lm22fjwmcq5lhh70drzvtqjc
        	            	+
        	Test:       	TestClientGatewayIntegration/TestClientGatewayExecError/worker=containerd-snapshotter-stargz/rootfs_and_readwrite_scratch_mount
```

Signed-off-by: Sebastiaan van Stijn <[email protected]>
  • Loading branch information
thaJeztah committed Sep 4, 2022
1 parent 2b24432 commit 0633b89
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions client/build_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1076,6 +1076,9 @@ func testClientGatewayContainerPlatformPATH(t *testing.T, sb integration.Sandbox
// testClientGatewayExecError is testing gateway exec to recreate the container
// process for a failed execop.
func testClientGatewayExecError(t *testing.T, sb integration.Sandbox) {
if sb.Snapshotter() == "stargz" {
t.Skip("Failing on 0.8 branch with Go 1.18; see https://github.com/moby/buildkit/pull/3079")
}
requiresLinux(t)

ctx := context.TODO()
Expand Down

0 comments on commit 0633b89

Please sign in to comment.