From e9bcbc539890020668cbd361a0d8edbb8f6ab8a1 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Wed, 14 Jul 2010 17:25:46 -0700 Subject: [PATCH] os: use /tmp again R=adg CC=golang-dev https://golang.org/cl/1823041 --- src/pkg/os/os_test.go | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/pkg/os/os_test.go b/src/pkg/os/os_test.go index 65a99355ff..9b206d0c6f 100644 --- a/src/pkg/os/os_test.go +++ b/src/pkg/os/os_test.go @@ -11,6 +11,7 @@ import ( "io/ioutil" . "os" "strings" + "syscall" "testing" ) @@ -56,7 +57,13 @@ func size(name string, t *testing.T) int64 { func newFile(testName string, t *testing.T) (f *File) { // Use a local file system, not NFS. - f, err := ioutil.TempFile("", "_Go_"+testName) + // On Unix, override $TMPDIR in case the user + // has it set to an NFS-mounted directory. + dir := "" + if syscall.OS != "windows" { + dir = "/tmp" + } + f, err := ioutil.TempFile(dir, "_Go_"+testName) if err != nil { t.Fatalf("open %s: %s", testName, err) } -- 2.50.0