From 09c80ba51b479bdbfe04b370cc3fd82f2d7cdc61 Mon Sep 17 00:00:00 2001 From: Bin Shi <39923490+binshi-bing@users.noreply.github.com> Date: Fri, 12 May 2023 18:32:22 +0800 Subject: [PATCH] Disable TestGetMinTS since it's not stable (#6459) ref tikv/pd#6453 Disable TestGetMinTS due to https://github.com/tikv/pd/issues/6453 Signed-off-by: Bin Shi --- tests/integrations/tso/client_test.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/integrations/tso/client_test.go b/tests/integrations/tso/client_test.go index 204534e7ffa..e1f1de98989 100644 --- a/tests/integrations/tso/client_test.go +++ b/tests/integrations/tso/client_test.go @@ -245,6 +245,10 @@ func (suite *tsoClientTestSuite) TestDiscoverTSOServiceWithLegacyPath() { // TestGetMinTS tests the correctness of GetMinTS. func (suite *tsoClientTestSuite) TestGetMinTS() { + // Skip this test for the time being due to https://github.com/tikv/pd/issues/6453 + // TODO: fix it #6453 + suite.T().SkipNow() + var wg sync.WaitGroup wg.Add(tsoRequestConcurrencyNumber * len(suite.clients)) for i := 0; i < tsoRequestConcurrencyNumber; i++ {