mirror of
https://github.com/golang/go.git
synced 2025-10-19 11:03:18 +00:00
test: enforce 1 proc in the test
otherwise it fails spuriously with "newfunc allocated unexpectedly" message when run with GOMAXPROCS>1 (other goroutine allocates). R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/6347056
This commit is contained in:
parent
ed516df4e4
commit
91e56e6486
1 changed files with 1 additions and 0 deletions
|
@ -81,6 +81,7 @@ func h() {
|
|||
func newfunc() func(int) int { return func(x int) int { return x } }
|
||||
|
||||
func main() {
|
||||
runtime.GOMAXPROCS(1)
|
||||
var fail bool
|
||||
|
||||
go f()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue