Commit aeefe0fa authored by Rob Pike's avatar Rob Pike

path/filepath: disable AbsTest on windows

SameFile has a bug.

R=golang-dev
TBR=rsc
CC=golang-dev
https://golang.org/cl/5754055
parent efbd79ce
......@@ -666,6 +666,10 @@ 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)
......
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