Commit bf91e827 authored by Alex Brainman's avatar Alex Brainman

filepath: do not run TestEvalSymlinks on Windows

R=golang-dev, rsc1
CC=adg, golang-dev
https://golang.org/cl/4274069
parent 39a1465d
......@@ -440,6 +440,10 @@ var EvalSymlinksTests = []EvalSymlinksTest{
}
func TestEvalSymlinks(t *testing.T) {
// Symlinks are not supported under windows.
if runtime.GOOS == "windows" {
return
}
defer os.RemoveAll("test")
for _, d := range EvalSymlinksTestDirs {
var err os.Error
......
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