summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@gcc.gnu.org>2019-02-22 00:47:30 +0000
committerIan Lance Taylor <ian@gcc.gnu.org>2019-02-22 00:47:30 +0000
commitf08e60e9880be0ad53f7b3decc2cf8ee9377f5ac (patch)
treee25d5f7e40cab388b4c0ffe79807a82224dd9945
parent8aef6e02ad1b49cd60e78caf9909e6c8aa517649 (diff)
re PR go/89406 (Go testing leaves many temporary directories in /tmp around)
PR go/89406 net: remove unixgram test sockets Backport https://golang.org/cl/163277 from the master library. Updates https://gcc.gnu.org/PR89406 Reviewed-on: https://go-review.googlesource.com/c/163200 From-SVN: r269087
-rw-r--r--gcc/go/gofrontend/MERGE2
-rw-r--r--libgo/go/net/listen_test.go3
-rw-r--r--libgo/go/net/mockserver_test.go2
-rw-r--r--libgo/go/net/splice_test.go1
4 files changed, 5 insertions, 3 deletions
diff --git a/gcc/go/gofrontend/MERGE b/gcc/go/gofrontend/MERGE
index 0a70b3a260c..a1cd9247996 100644
--- a/gcc/go/gofrontend/MERGE
+++ b/gcc/go/gofrontend/MERGE
@@ -1,4 +1,4 @@
-4fbd06dc7b1b8fb665293399a2b6d5326435512f
+45a2e231958854fd945961f0335ac0805d502510
The first line of this file holds the git revision number of the last
merge done from the gofrontend repository.
diff --git a/libgo/go/net/listen_test.go b/libgo/go/net/listen_test.go
index 6c3f70cc7bf..6c9b92a9fc5 100644
--- a/libgo/go/net/listen_test.go
+++ b/libgo/go/net/listen_test.go
@@ -780,6 +780,9 @@ func TestListenConfigControl(t *testing.T) {
continue
}
c.Close()
+ if network == "unixgram" {
+ os.Remove(address)
+ }
}
})
}
diff --git a/libgo/go/net/mockserver_test.go b/libgo/go/net/mockserver_test.go
index 530293578a0..e085f4440b5 100644
--- a/libgo/go/net/mockserver_test.go
+++ b/libgo/go/net/mockserver_test.go
@@ -17,8 +17,6 @@ import (
)
// testUnixAddr uses ioutil.TempFile to get a name that is unique.
-// It also uses /tmp directory in case it is prohibited to create UNIX
-// sockets in TMPDIR.
func testUnixAddr() string {
f, err := ioutil.TempFile("", "go-nettest")
if err != nil {
diff --git a/libgo/go/net/splice_test.go b/libgo/go/net/splice_test.go
index 26e3ac4bb14..324103edf8b 100644
--- a/libgo/go/net/splice_test.go
+++ b/libgo/go/net/splice_test.go
@@ -242,6 +242,7 @@ func testSpliceNoUnixgram(t *testing.T) {
if err != nil {
t.Fatal(err)
}
+ defer os.Remove(addr.Name)
up, err := ListenUnixgram("unixgram", addr)
if err != nil {
t.Fatal(err)