From bf91e827ac08ba3375353108840d641c5a581865 Mon Sep 17 00:00:00 2001 From: Alex Brainman Date: Fri, 18 Mar 2011 10:19:19 +1100 Subject: [PATCH] filepath: do not run TestEvalSymlinks on Windows R=golang-dev, rsc1 CC=adg, golang-dev https://golang.org/cl/4274069 --- src/pkg/path/filepath/path_test.go | 4 ++++ 1 file changed, 4 insertions(+) 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 -- 2.48.1