don't run the version negotiation tests with race detector

This commit is contained in:
Marten Seemann 2019-02-08 13:56:49 +08:00
parent 7dc4be2ce9
commit 9bffce264f
3 changed files with 17 additions and 0 deletions

View file

@ -0,0 +1,6 @@
// +build !race
package israce
// Enabled reports if the race detector is enabled.
const Enabled = false

View file

@ -0,0 +1,6 @@
// +build race
package israce
// Enabled reports if the race detector is enabled.
const Enabled = true