-
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: "signal: segmentation fault (core dumped)" on several builders #35248
Comments
I was able to reproduce on the first try on my laptop:
I'll continue digging, and I'll post again when I find something useful. Edit: Second and third attempts also resulted in a segfault, happening at 190s and 120s respectively. |
I've done a little experimenting with this as well. My suspicion is that the problem is with the runtime's "TestSignalM" test, which is relatively recently added -- when I do repeated runs in parallel of GOMAXPROCS=2 go test -test.v runtime -cpu=1,2,4 -quick that's the last testpoint mentioned before the crash. On the other hand, when I run go test -i -o runtime.test I don't see any failures, so it's possible that my theory isn't valid. |
I tried, but I haven't been able to reproduce at all on my workstation (using the commands above). @mvdan Did you actually get a core that might have a stack trace? (I see '(core dumped)' above). |
Yes, systemd has multiple of these core dumps, but I don't know what to do with them. If anyone has the magic
|
I haven't been able to reproduce any TestSignalM failures locally either, but the theory seems fairly likely. If you get a SIGSEGV while in a signal handler, this is exactly what you would see. @mvdan, you should be able to build that exactly |
Doesn't seem to depend on the architecture:
|
Reproduced. The problem is the write barrier in the
|
Change https://golang.org/cl/204620 mentions this issue: |
Recent failures:
linux-amd64-longtest
https://build.golang.org/log/2f557c21abbd30f393d31cd3094dde6bccee48c7
https://build.golang.org/log/3d427000c9d69970f6dd0974718c8524474516fc
android-386-emu
https://build.golang.org/log/94080d34708d677dc0630d9d2445c92e564b7d82
https://build.golang.org/log/890de6fd18120451c10d7fc5236efac24415a012
android-amd64-emu
https://build.golang.org/log/659370b5330f0859af3148346a1fd874f130b268
linux-386-longtest
https://build.golang.org/log/578fe75a475dbc108b9d5bb5009c5bc29e0c1881
https://build.golang.org/log/085bc9636684a5416676e580c6202e0ee434a745
Noticed by @bcmills in https://golang.org/cl/200337, but as noted by @thanm that change is a simple Android-only change.
The text was updated successfully, but these errors were encountered: