Closed
Description
What version of Go are you using (go version
)?
$ go version go version go1.18 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="" GOARCH="amd64" GOBIN="" GOCACHE="/home/win/.cache/go-build" GOENV="/home/win/.config/go/env" GOEXE="" GOEXPERIMENT="" GOFLAGS="" GOHOSTARCH="amd64" GOHOSTOS="linux" GOINSECURE="" GOMODCACHE="/home/win/go/pkg/mod" GONOPROXY="" GONOSUMDB="" GOOS="linux" GOPATH="/home/win/go" GOPRIVATE="" GOPROXY="https://proxy.golang.org,direct" GOROOT="/usr/lib/go" GOSUMDB="sum.golang.org" GOTMPDIR="" GOTOOLDIR="/usr/lib/go/pkg/tool/linux_amd64" GOVCS="" GOVERSION="go1.18" GCCGO="gccgo" GOAMD64="v1" AR="ar" CC="gcc" CXX="g++" CGO_ENABLED="1" GOMOD="/dev/null" GOWORK="" 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-build2412875146=/tmp/go-build -gno-record-gcc-switches"
What did you do?
func main() {
counter := 0
panic(http.ListenAndServe(":8080", http.HandlerFunc(
func(w http.ResponseWriter, r *http.Request) {
counter++
fmt.Fprintln(w, counter)
},
)))
}
and run it with go run -race main.go
, then curl
it twice
What did you expect to see?
race detector detects the race condition
What did you see instead?
race detector doesn't detect the race condition
I believe the go race detector will catch it even though I run curl
sequentially because in the following code, the race detected do detect it correctly
func main() {
counter := 0
go func() {
counter++
fmt.Println(counter)
}()
time.Sleep(1 * time.Second)
go func() {
counter++
fmt.Println(counter)
}()
time.Sleep(1 * time.Second)
}