diff options
| author | Alex Brainman <alex.brainman@gmail.com> | 2012-03-07 11:01:23 +1100 |
|---|---|---|
| committer | Alex Brainman <alex.brainman@gmail.com> | 2012-03-07 11:01:23 +1100 |
| commit | 7a3c6c950bddf21d4c39289abe1173dc52f757a7 (patch) | |
| tree | 84bbd5fd81ffb87e5f855bddd23c4595a2d94f1e /src/pkg/path/filepath/path_test.go | |
| parent | 3ea3a7c9a5e0926940b341fde56f968de152edaf (diff) | |
| download | go-7a3c6c950bddf21d4c39289abe1173dc52f757a7.tar.xz | |
os: fix SameFile to work for directories on windows
R=golang-dev, r
CC=golang-dev
https://golang.org/cl/5756064
Diffstat (limited to 'src/pkg/path/filepath/path_test.go')
| -rw-r--r-- | src/pkg/path/filepath/path_test.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/pkg/path/filepath/path_test.go b/src/pkg/path/filepath/path_test.go index 6bc631596e..ad053177f5 100644 --- a/src/pkg/path/filepath/path_test.go +++ b/src/pkg/path/filepath/path_test.go @@ -666,10 +666,6 @@ var absTests = []string{ } func TestAbs(t *testing.T) { - if runtime.GOOS == "windows" { - t.Log("TestAbs disabled on windows") - return - } oldwd, err := os.Getwd() if err != nil { t.Fatal("Getwd failed: ", err) |
