Commit 94401f52 authored by Alex Brainman's avatar Alex Brainman

path/filepath: disable test on windows to fix build

R=golang-dev, rsc1
CC=golang-dev
https://golang.org/cl/4235054
parent 6193e0ba
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment