diff --git a/src/pkg/path/filepath/path_test.go b/src/pkg/path/filepath/path_test.go index 469ca6a8029..8f887f00bbf 100644 --- a/src/pkg/path/filepath/path_test.go +++ b/src/pkg/path/filepath/path_test.go @@ -8,6 +8,7 @@ import ( "os" "path/filepath" "reflect" + "runtime" "testing" ) @@ -279,6 +280,10 @@ func (v *TestVisitor) VisitFile(path string, f *os.FileInfo) { } func TestWalk(t *testing.T) { + // TODO(brainman): enable test once Windows version is implemented. + if runtime.GOOS == "windows" { + return + } makeTree(t) // 1) ignore error handling, expect none