From 57ecff1592bb6386ae5fdd0f4a7fcea0605d5399 Mon Sep 17 00:00:00 2001 From: Wenyi Hu Date: Thu, 11 Jul 2024 17:29:29 -0400 Subject: [PATCH] kvserver/rangefeed: skip TestRangeFeedIntentResolutionRace under stress This patch skips TestRangeFeedIntentResolutionRace under stress. This test is a known issue. Informs: https://github.com/cockroachdb/cockroach/issues/119340 Release note: none --- pkg/kv/kvclient/rangefeed/rangefeed_external_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/kv/kvclient/rangefeed/rangefeed_external_test.go b/pkg/kv/kvclient/rangefeed/rangefeed_external_test.go index 5faedb453121..bb13d8a4c2c6 100644 --- a/pkg/kv/kvclient/rangefeed/rangefeed_external_test.go +++ b/pkg/kv/kvclient/rangefeed/rangefeed_external_test.go @@ -1355,6 +1355,7 @@ func TestRangeFeedIntentResolutionRace(t *testing.T) { skip.UnderRace(t) // too slow, times out skip.UnderDeadlock(t) + skip.UnderStress(t) // Use a timeout, to prevent a hung test. ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second)