Skip to content
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: TestMemStats-2 fails with "Bad sys value" when run with -cpu=1,2,4 #10585

Closed
josharian opened this issue Apr 27, 2015 · 4 comments
Closed
Milestone

Comments

@josharian
Copy link
Contributor

CL 9350 changed run.bash from:

GOMAXPROCS=2 go test runtime -short -cpu=1
GOMAXPROCS=2 go test runtime -short -cpu=2
GOMAXPROCS=2 go test runtime -short -cpu=4

to

GOMAXPROCS=2 go test runtime -short -cpu=1,2,4`

The latter failed on all the linux builders. See e.g. http://build.golang.org/log/da902358a2f5babbca5dc405364c912987e396b7.

##### GOMAXPROCS=2 runtime -cpu=1,2,4
--- FAIL: TestMemStats-2 (0.00s)
    malloc_test.go:41: Bad sys value: {Alloc:2492744 TotalAlloc:312910744 Sys:31721720 ...

Fix the test, and then re-submit CL 9350. (It was rolled back in CL 9394.)

/cc @aclements

@josharian josharian added this to the Go1.5 milestone Apr 27, 2015
@aclements
Copy link
Member

Looks to be related to the shuffle from StackInuse to StackSys in readmemstats_m. With the single runs of the runtime test, StackSys == 0 before this shuffle, so it's fine to clobber it with StackInuse and pull that amount out of HeapSys. Everything still adds up to Sys. But with the multiple runs StackSys != 0 at this point, so when we clobber it, the new sum differs from the original sum in Sys by this much.

I'm not sure why multiple runs changes this, but this shuffle smells wrong.

@aclements
Copy link
Member

Ah. I think newosproc0 is the only function that manipulates memstats.stacks_sys directly. It gets called in the runtime test suite by TestNewOSProc0, which presumably runs after TestMemStats. In a single run, this means when TestMemStats runs, stacks_sys==0. But in a multi-run, the first run of TestNewOSProc0 will run before the second run of TestMemStats, so the second run of TestMemStats sees stacks_sys!=0.

The problem is just as easy to trigger with
go test -short runtime -cpu=1,1

@aclements
Copy link
Member

@gopherbot
Copy link
Contributor

CL https://golang.org/cl/9366 mentions this issue.

@golang golang locked and limited conversation to collaborators Jun 25, 2016
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

3 participants