src/pkg/path/filepath/path_test.go | 5 +++++ diff --git a/src/pkg/path/filepath/path_test.go b/src/pkg/path/filepath/path_test.go index 469ca6a80298a5383baa6ee8b76a6d9cbbf16ef0..8f887f00bbf398f41e5e552a01997cc06e4805d8 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 @@ mark(f.Name) } 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