-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
runtime: unknown pc during parallel benchmarks #28541
Comments
Your gist doesn't seem to have a |
Wow that was a stupid mistake, sorry >_<
should actually panic. |
I can't reproduce the panic 1.11.1 nor 1.11
|
Thank you for the report @mediocregopher and others for chiming in! @mediocregopher currently on Go tip (Go1.12+) I get a compilation error $ GO111MODULE=off go get -u github.com/mediocregopher/radix.v3
../../../../../go/src/github.com/mediocregopher/radix.v3/stream.go:13:2: use of internal package github.com/mediocregopher/radix/internal/bytesutil not allowed Please fix that to aid in reproduction, but also since we are at the very end of the Go1.12 cycle, I shall punt this issue to Go1.13. |
The radix project has undergone some changes, including moving to a new repo and using the new module stuff. I updated the test case to reflect that, and in doing so simplified it a bit. It seems now all that is required to get it to crash is to change the parallelism of the benchmark.
Interestingly this doesn't always cause it to panic, but it does so fairly frequently. Here is the new output when it does: with_cgo2.txt. And here's the output without cgo enabled: without_cgo2.txt. This is all on Thanks for looking into this! |
Please answer these questions before submitting your issue. Thanks!
What version of Go are you using (
go version
)?go1.11.1 linux/arm64
Does this issue reproduce with the latest release?
yes
What operating system and processor architecture are you using (
go env
)?I'm using archlinux installed into a chroot on a chromebook, which is arm64.
What did you do?
This error is quite easy for me to reproduce, but difficult to pin down a small test-case for it.
The following will cause the error, but requires a redis server to be running in order to do so:
What did you expect to see?
Both the
panicking
andnot-panicking
benchmarks to complete successfully.What did you see instead?
If I run that with
CGO_ENABLED=1
the runtime panics with anunknown pc
error:with_cgo.txt
If I run it with
CGO_ENABLED=0
it panics with anunexpected fault address
: without_cgo.txtEither way it seems the panicking is happening within the benchmark package, not my own, though I'm not able to find a reproducible test case without using my own code.
The text was updated successfully, but these errors were encountered: