Commit ee78a707 authored by Christopher Nielsen's avatar Christopher Nielsen Committed by Rob Pike

path/filepath: Skip TestEvalSymlinks. Plan 9 doesn't have symlinks.

R=golang-dev, r
CC=golang-dev
https://golang.org/cl/9713044
parent af48543c
......@@ -630,6 +630,10 @@ func simpleJoin(dir, path string) string {
}
func TestEvalSymlinks(t *testing.T) {
if runtime.GOOS == "plan9" {
t.Skip("Skipping test: symlinks don't exist under Plan 9")
}
tmpDir, err := ioutil.TempDir("", "evalsymlink")
if err != nil {
t.Fatal("creating temp dir:", 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