From 77738f3f219d18a873eae6de2c0e2956a6afd2c0 Mon Sep 17 00:00:00 2001 From: yifanguan Date: Tue, 6 Dec 2022 09:20:27 -0800 Subject: [PATCH] [#15231] YSQL: flaky test: CreateTableITest.TableColocationRemoteBootstrapTest Summary: Test `CreateTableITest.TableColocationRemoteBootstrapTest` consistently failed on TSAN build. It should be disabled in TSAN, as per most of our YSQL tests. Test Plan: All existing Jenkins tests Reviewers: bogdan Reviewed By: bogdan Subscribers: yql Differential Revision: https://phabricator.dev.yugabyte.com/D21565 --- src/yb/integration-tests/create-table-itest.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/yb/integration-tests/create-table-itest.cc b/src/yb/integration-tests/create-table-itest.cc index 98694b0c47b6..b7436b664b4d 100644 --- a/src/yb/integration-tests/create-table-itest.cc +++ b/src/yb/integration-tests/create-table-itest.cc @@ -380,7 +380,7 @@ TEST_F(CreateTableITest, LegacyColocatedDBTableColocationRemoteBootstrapTest) { ASSERT_OK(WaitFor(dirs_exist, MonoDelta::FromSeconds(100), "Create data and wal directories")); } -TEST_F(CreateTableITest, TableColocationRemoteBootstrapTest) { +TEST_F(CreateTableITest, YB_DISABLE_TEST_IN_TSAN(TableColocationRemoteBootstrapTest)) { const int kNumReplicas = 3; const string kNamespaceName = "colocation_test"; string parent_table_id;