From 18d40f05c8ac6991a5df7354909df436819fc0ff Mon Sep 17 00:00:00 2001 From: Anthony Nandaa Date: Mon, 18 Dec 2023 01:31:12 -0800 Subject: [PATCH] tests: enable previously skipped tests This enables 3 tests that had been previously skipped due to the lack of Windows support initially. The remaining ones in that group, see #4485, will need some code modifications to be enabled. Signed-off-by: Anthony Nandaa --- source/http/source_test.go | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/source/http/source_test.go b/source/http/source_test.go index 8b8e429b6b1e..302a05566b57 100644 --- a/source/http/source_test.go +++ b/source/http/source_test.go @@ -4,7 +4,6 @@ import ( "context" "os" "path/filepath" - "runtime" "testing" "github.com/containerd/containerd/content/local" @@ -28,10 +27,6 @@ import ( ) func TestHTTPSource(t *testing.T) { - if runtime.GOOS == "windows" { - t.Skip("Depends on unimplemented containerd bind-mount support on Windows") - } - t.Parallel() ctx := context.TODO() @@ -147,10 +142,6 @@ func TestHTTPSource(t *testing.T) { } func TestHTTPDefaultName(t *testing.T) { - if runtime.GOOS == "windows" { - t.Skip("Depends on unimplemented containerd bind-mount support on Windows") - } - t.Parallel() ctx := context.TODO() @@ -217,10 +208,6 @@ func TestHTTPInvalidURL(t *testing.T) { } func TestHTTPChecksum(t *testing.T) { - if runtime.GOOS == "windows" { - t.Skip("Depends on unimplemented containerd bind-mount support on Windows") - } - t.Parallel() ctx := context.TODO()