Exclude tcp_noracedetector_test.go from gotsan runs.

PiperOrigin-RevId: 424989750
This commit is contained in:
Bhasker Hariharan
2022-01-28 17:13:57 -08:00
committed by gVisor bot
parent e29fd32d0a
commit 44f0f2dc40
2 changed files with 3 additions and 3 deletions
+3
View File
@@ -164,6 +164,9 @@ go_test(
name = "tcp_noracedetector_test",
size = "small",
srcs = ["tcp_noracedetector_test.go"],
# These tests can be extremely slow/flaky when run under gotsan,
# so exclude them from gotsan runs.
tags = ["nogotsan"],
deps = [
":e2e",
"//pkg/refs",
@@ -15,9 +15,6 @@
// These tests are flaky when run under the go race detector due to some
// iterations taking long enough that the retransmit timer can kick in causing
// the congestion window measurements to fail due to extra packets etc.
//
//go:build !race
// +build !race
package tcp_noracedetector_test