What version of Go are you using (go version)?
$ go version
go version go1.15.5 linux/amd64
Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (go env)?
go env Output
$ go env
GO111MODULE="on"
GOARCH="amd64"
GOBIN=""
GOCACHE="/home/howardjohn/.cache/go-build"
GOENV="/home/howardjohn/.config/go/env"
GOEXE=""
GOFLAGS=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GOINSECURE=""
GOMODCACHE="/home/howardjohn/go/pkg/mod"
GONOPROXY=""
GONOSUMDB=""
GOOS="linux"
GOPATH="/home/howardjohn/go"
GOPRIVATE=""
GOPROXY="https://proxy.golang.org,direct"
GOROOT="/usr/lib/go-1.15"
GOSUMDB="sum.golang.org"
GOTMPDIR=""
GOTOOLDIR="/usr/lib/go-1.15/pkg/tool/linux_amd64"
GCCGO="gccgo"
AR="ar"
CC="gcc"
CXX="g++"
CGO_ENABLED="1"
GOMOD="/home/howardjohn/go/src/istio.io/istio/go.mod"
CGO_CFLAGS="-g -O2"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-g -O2"
CGO_FFLAGS="-g -O2"
CGO_LDFLAGS="-g -O2"
PKG_CONFIG="pkg-config"
GOGCCFLAGS="-fPIC -m64 -pthread -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build890005715=/tmp/go-build -gno-record-gcc-switches"
What did you do?
func TestTest(t *testing.T) {
d := t.TempDir()
go func() {
c := 0
for {
ioutil.WriteFile(filepath.Join(d, fmt.Sprint(c)), nil, 0600)
c++
}
}()
t.TempDir()
}
What did you expect to see?
Test passes. Alternatively, this caveat is sufficiently documented in t.TempDir and/or RemoveAll.
What did you see instead?
Test fails with: testing.go:915: TempDir RemoveAll cleanup: unlinkat /tmp/TestTest064788875/001: directory not empty
This happens about 50% of the time in this case. In the real world scenario I am actually trying to test, it happens about 0.001% of the time, which makes it quite frustrating.
A manual version of t.TempDir which ignores this error passes, for what its worth.
func TestManual(t *testing.T) {
d, err := ioutil.TempDir("", "test")
if err != nil {
t.Fatal(err)
}
t.Cleanup(func() {
if err := os.RemoveAll(d); err != nil {
if err.(*os.PathError).Op != "unlinkat" {
t.Errorf("TempDir RemoveAll cleanup: %v", err)
}
}
})
go func() {
c := 0
for {
ioutil.WriteFile(filepath.Join(d, fmt.Sprint(c)), nil, 0600)
c++
}
}()
}
I think I understand why it works this way, and unfortunately I don't see any great options here, so perhaps just some documentation around this is the best path forward.
What version of Go are you using (
go version)?Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (
go env)?go envOutputWhat did you do?
What did you expect to see?
Test passes. Alternatively, this caveat is sufficiently documented in t.TempDir and/or RemoveAll.
What did you see instead?
Test fails with:
testing.go:915: TempDir RemoveAll cleanup: unlinkat /tmp/TestTest064788875/001: directory not emptyThis happens about 50% of the time in this case. In the real world scenario I am actually trying to test, it happens about 0.001% of the time, which makes it quite frustrating.
A manual version of t.TempDir which ignores this error passes, for what its worth.
I think I understand why it works this way, and unfortunately I don't see any great options here, so perhaps just some documentation around this is the best path forward.