From 2a6a4587fab0c89317585965dd80e6bb4bd03293 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Wed, 10 Nov 2021 15:38:22 +0100 Subject: [PATCH] testing: skip TestBuildWCOWSandboxSize for now This test is failing frequently once nodes have less disk space available. Skipping the test for now, but we can continue looking for a good solution. Tracked through https://github.com/moby/moby/issues/42743 Signed-off-by: Sebastiaan van Stijn --- integration/build/build_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/integration/build/build_test.go b/integration/build/build_test.go index 4fa0db5e95..5da3a294a1 100644 --- a/integration/build/build_test.go +++ b/integration/build/build_test.go @@ -524,6 +524,7 @@ RUN for g in $(seq 0 8); do dd if=/dev/urandom of=rnd bs=1K count=1 seek=$((1024 } func TestBuildWCOWSandboxSize(t *testing.T) { + t.Skip("FLAKY_TEST that needs to be fixed; see https://github.com/moby/moby/issues/42743") skip.If(t, testEnv.DaemonInfo.OSType != "windows", "only Windows has sandbox size control") ctx := context.TODO() defer setupTest(t)()