mirror of
https://github.com/moby/buildkit.git
synced 2026-08-09 01:01:08 +00:00
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:
@@ -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()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user