| From 1ff97aa19bbe29614d74c7d38105561a6f7ef8c5 Mon Sep 17 00:00:00 2001 |
| From: Chenglong Tang <chenglongtang@google.com> |
| Date: Tue, 10 Dec 2024 06:22:04 +0000 |
| Subject: [PATCH] Skip tests with open issues |
| |
| 1. TestBuildWithHugeFile - This test tries to load an 8GB file to docker |
| and there isn't enough space available in the partition for docker. |
| 2. TestBuildUserNamespaceValidateCapabilitiesAreV2 - Test has an open |
| issue - https://github.com/moby/moby/issues/38712 |
| 3. TestNetworkLoopbackNAT - The test has an history of flakiness, Need to |
| find root cause of failure in COS environment. |
| --- |
| integration/build/build_test.go | 1 + |
| integration/build/build_userns_linux_test.go | 1 + |
| integration/container/nat_test.go | 1 + |
| 3 files changed, 3 insertions(+) |
| |
| diff --git a/integration/build/build_test.go b/integration/build/build_test.go |
| index 033790c7ad..144820b06a 100644 |
| --- a/integration/build/build_test.go |
| +++ b/integration/build/build_test.go |
| @@ -481,6 +481,7 @@ RUN [ ! -f foo ] |
| // #37581 |
| // #40444 (Windows Containers only) |
| func TestBuildWithHugeFile(t *testing.T) { |
| + t.Skip("Not enough disk space in Autotest VM") |
| ctx := setupTest(t) |
| |
| dockerfile := `FROM busybox |
| diff --git a/integration/build/build_userns_linux_test.go b/integration/build/build_userns_linux_test.go |
| index e4d56a6302..5c8f4d9111 100644 |
| --- a/integration/build/build_userns_linux_test.go |
| +++ b/integration/build/build_userns_linux_test.go |
| @@ -26,6 +26,7 @@ import ( |
| // VFS_CAP_REVISION_2 (no user-namespace root uid) format rather than V3 (that includes |
| // the root uid). |
| func TestBuildUserNamespaceValidateCapabilitiesAreV2(t *testing.T) { |
| + t.Skip("Open issue - https://github.com/moby/moby/issues/38712") |
| skip.If(t, testEnv.DaemonInfo.OSType != "linux") |
| skip.If(t, testEnv.IsRemoteDaemon()) |
| skip.If(t, !testEnv.IsUserNamespaceInKernel()) |
| diff --git a/integration/container/nat_test.go b/integration/container/nat_test.go |
| index 9506430dd3..d11a398754 100644 |
| --- a/integration/container/nat_test.go |
| +++ b/integration/container/nat_test.go |
| @@ -56,6 +56,7 @@ func TestNetworkLocalhostTCPNat(t *testing.T) { |
| } |
| |
| func TestNetworkLoopbackNat(t *testing.T) { |
| + t.Skip("Need to find root cause - https://github.com/moby/moby/issues/41561") |
| skip.If(t, testEnv.GitHubActions, "FIXME: https://github.com/moby/moby/issues/41561") |
| skip.If(t, testEnv.DaemonInfo.OSType == "windows", "FIXME") |
| skip.If(t, testEnv.IsRemoteDaemon) |
| |