From: Alex Brainman Date: Thu, 17 Mar 2011 23:19:19 +0000 (+1100) Subject: filepath: do not run TestEvalSymlinks on Windows X-Git-Tag: weekly.2011-03-28~95 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=bf91e827ac08ba3375353108840d641c5a581865;p=gostls13.git filepath: do not run TestEvalSymlinks on Windows R=golang-dev, rsc1 CC=adg, golang-dev https://golang.org/cl/4274069 --- diff --git a/src/pkg/path/filepath/path_test.go b/src/pkg/path/filepath/path_test.go index e07b6b0c6f..5c891dee62 100644 --- a/src/pkg/path/filepath/path_test.go +++ b/src/pkg/path/filepath/path_test.go @@ -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