summaryrefslogtreecommitdiff
path: root/libgo/go/cmd/go/pkg_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/cmd/go/pkg_test.go')
-rw-r--r--libgo/go/cmd/go/pkg_test.go7
1 files changed, 5 insertions, 2 deletions
diff --git a/libgo/go/cmd/go/pkg_test.go b/libgo/go/cmd/go/pkg_test.go
index 1e7ca2c6fe..fba13636cd 100644
--- a/libgo/go/cmd/go/pkg_test.go
+++ b/libgo/go/cmd/go/pkg_test.go
@@ -1,4 +1,4 @@
-// Copyright 2014 The Go Authors. All rights reserved.
+// Copyright 2014 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
@@ -161,9 +161,12 @@ func TestSharedLibName(t *testing.T) {
}
oldGopath := buildContext.GOPATH
defer func() {
- os.RemoveAll(tmpGopath)
buildContext.GOPATH = oldGopath
os.Chdir(cwd)
+ err := os.RemoveAll(tmpGopath)
+ if err != nil {
+ t.Error(err)
+ }
}()
root := filepath.Join(tmpGopath, "src", data.rootedAt)
err = os.MkdirAll(root, 0755)