From af442a22d956464e7df703b290fa49d78dda3dfa Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Sun, 24 Sep 2017 11:13:37 +0200 Subject: executor, sys/windows: initial windows support --- pkg/csource/csource_test.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'pkg/csource/csource_test.go') diff --git a/pkg/csource/csource_test.go b/pkg/csource/csource_test.go index fac64be82..6334c40bf 100644 --- a/pkg/csource/csource_test.go +++ b/pkg/csource/csource_test.go @@ -101,8 +101,10 @@ func TestOne(t *testing.T) { } for _, target := range prog.AllTargets() { if target.OS == "fuchsia" { - // TODO(dvyukov): support fuchsia - continue + continue // TODO(dvyukov): support fuchsia + } + if target.OS == "windows" { + continue // TODO(dvyukov): support windows } target := target t.Run(target.OS+"/"+target.Arch, func(t *testing.T) { -- cgit mrf-deployment