mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
don't run the version negotiation tests with race detector
This commit is contained in:
parent
7dc4be2ce9
commit
9bffce264f
3 changed files with 17 additions and 0 deletions
6
integrationtests/tools/israce/norace.go
Normal file
6
integrationtests/tools/israce/norace.go
Normal file
|
@ -0,0 +1,6 @@
|
|||
// +build !race
|
||||
|
||||
package israce
|
||||
|
||||
// Enabled reports if the race detector is enabled.
|
||||
const Enabled = false
|
6
integrationtests/tools/israce/race.go
Normal file
6
integrationtests/tools/israce/race.go
Normal file
|
@ -0,0 +1,6 @@
|
|||
// +build race
|
||||
|
||||
package israce
|
||||
|
||||
// Enabled reports if the race detector is enabled.
|
||||
const Enabled = true
|
Loading…
Add table
Add a link
Reference in a new issue