aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/path/filepath/path_test.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2012-02-04 01:37:30 -0500
committerRuss Cox <rsc@golang.org>2012-02-04 01:37:30 -0500
commit7e5dc928a4ad95eb062afa19616de8104d32a458 (patch)
tree4f18ec51fac12c24d94d3c4f3d318e86e6ab850b /src/pkg/path/filepath/path_test.go
parentb8b2253ac78ac76aa5ef171171005b8214e44fec (diff)
downloadgo-7e5dc928a4ad95eb062afa19616de8104d32a458.tar.xz
path/filepath: disable broken tests
TBR=golang-dev CC=golang-dev https://golang.org/cl/5625050
Diffstat (limited to 'src/pkg/path/filepath/path_test.go')
-rw-r--r--src/pkg/path/filepath/path_test.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/pkg/path/filepath/path_test.go b/src/pkg/path/filepath/path_test.go
index a1b0c9d584..eb869486ad 100644
--- a/src/pkg/path/filepath/path_test.go
+++ b/src/pkg/path/filepath/path_test.go
@@ -586,6 +586,9 @@ func testEvalSymlinks(t *testing.T, tests []EvalSymlinksTest) {
}
func TestEvalSymlinks(t *testing.T) {
+ t.Logf("test needs to be rewritten; disabled")
+ return
+
defer os.RemoveAll("test")
for _, d := range EvalSymlinksTestDirs {
var err error
@@ -645,6 +648,9 @@ var abstests = []string{
}
func TestAbs(t *testing.T) {
+ t.Logf("test needs to be rewritten; disabled")
+ return
+
oldwd, err := os.Getwd()
if err != nil {
t.Fatal("Getwd failed: " + err.Error())