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 <profnandaa@gmail.com>
This commit is contained in:
Anthony Nandaa
2023-12-18 01:31:12 -08:00
parent a711a6d929
commit 18d40f05c8

View File

@@ -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()