I've seen a lot of code like this: ``` go // +build race package p const race = true ``` ``` go // +build !race package p const race = false ``` I think it would be better to have one boolean for that, and the most logical place for it seems to be either runtime/debug or runtime/race.