What version of Go are you using (go version)?
$ go version
go version go1.20.1 darwin/arm64
Does this issue reproduce with the latest release?
1.20.1 is the latest release at the moment.
What operating system and processor architecture are you using (go env)?
go env Output
$ go env
GO111MODULE=""
GOARCH="arm64"
GOBIN=""
GOCACHE="/Users/USER/Library/Caches/go-build"
GOENV="/Users/USER/Library/Application Support/go/env"
GOEXE=""
GOEXPERIMENT=""
GOFLAGS=""
GOHOSTARCH="arm64"
GOHOSTOS="darwin"
GOINSECURE=""
GOMODCACHE="/Users/USER/.gvm/pkgsets/go1.20.1/global/pkg/mod"
GONOPROXY=""
GONOSUMDB=""
GOOS="darwin"
GOPATH="/Users/USER/.gvm/pkgsets/go1.20.1/global"
GOPRIVATE=""
GOPROXY="https://proxy.golang.org,direct"
GOROOT="/Users/USER/.gvm/gos/go1.20.1"
GOSUMDB="sum.golang.org"
GOTMPDIR=""
GOTOOLDIR="/Users/USER/.gvm/gos/go1.20.1/pkg/tool/darwin_arm64"
GOVCS=""
GOVERSION="go1.20.1"
GCCGO="gccgo"
AR="ar"
CC="clang"
CXX="clang++"
CGO_ENABLED="1"
GOMOD="/dev/null"
GOWORK=""
CGO_CFLAGS="-O2 -g"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-O2 -g"
CGO_FFLAGS="-O2 -g"
CGO_LDFLAGS="-O2 -g"
PKG_CONFIG="pkg-config"
GOGCCFLAGS="-fPIC -arch arm64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fdebug-prefix-map=/var/folders/0m/_63w01516tgf3cftmp9h7ylm0000gn/T/go-build1387756731=/tmp/go-build -gno-record-gcc-switches -fno-common"
What did you do?
Calling t.Helper() in helper that spawns a goroutine that calls t.Log() in that goroutine doesn't account for the t.Helper() call - that is expected, not the same func.
Calling t.Helper() and t.Log() inside the goroutine spawned in a function logs asm related file name - unexpected.
package thelper
import (
"sync"
"testing"
)
func Test(t *testing.T) {
t.Log("calling helper")
helper(t)
}
func helper(t *testing.T) {
t.Helper()
t.Log("in helper")
var wg sync.WaitGroup
wg.Add(1)
go func(t *testing.T) {
defer wg.Done()
t.Helper()
t.Log("in helper's goroutine")
}(t)
wg.Wait()
}
What did you expect to see?
=== RUN Test
main_test.go:9: calling helper
main_test.go:10: in helper
main_test.go:10: in helper's goroutine
--- PASS: Test (0.00s)
PASS
ok thelper 0.004s
What did you see instead?
=== RUN Test
main_test.go:9: calling helper
main_test.go:10: in helper
asm_arm64.s:1172: in helper's goroutine
--- PASS: Test (0.00s)
PASS
ok thelper 0.004s
What version of Go are you using (
go version)?Does this issue reproduce with the latest release?
1.20.1 is the latest release at the moment.
What operating system and processor architecture are you using (
go env)?go envOutputWhat did you do?
Calling
t.Helper()in helper that spawns a goroutine that callst.Log()in that goroutine doesn't account for thet.Helper()call - that is expected, not the samefunc.Calling
t.Helper()andt.Log()inside the goroutine spawned in a function logs asm related file name - unexpected.What did you expect to see?
What did you see instead?