From: Ian Lance Taylor Date: Wed, 28 Apr 2010 18:08:07 +0000 (-0700) Subject: Remove destination of symlink test in case it got left behind X-Git-Tag: weekly.2010-05-04~54 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=96179629efd28cf5a6642b50a3b4da273554411d;p=gostls13.git Remove destination of symlink test in case it got left behind earlier. R=rsc CC=golang-dev https://golang.org/cl/972045 --- diff --git a/src/pkg/os/os_test.go b/src/pkg/os/os_test.go index f4ccb524c1..5fb599265e 100644 --- a/src/pkg/os/os_test.go +++ b/src/pkg/os/os_test.go @@ -301,6 +301,7 @@ func TestLongSymlink(t *testing.T) { // Long, but not too long: a common limit is 255. s = s + s + s + s + s + s + s + s + s + s + s + s + s + s + s from := "longsymlinktestfrom" + Remove(from) // Just in case. err := Symlink(s, from) if err != nil { t.Fatalf("symlink %q, %q failed: %v", s, from, err)