You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by la...@apache.org on 2022/04/25 06:17:36 UTC

[kudu] 02/03: [unit test] make ToolTest.TestRebuildTserverByLocalReplicaCopy skip tsan

This is an automated email from the ASF dual-hosted git repository.

laiyingchun pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kudu.git

commit 285e26a0cce308d2fff8859e6bc593b0b0d41f61
Author: shenxingwuying <sh...@gmail.com>
AuthorDate: Wed Apr 20 19:58:21 2022 +0800

    [unit test] make ToolTest.TestRebuildTserverByLocalReplicaCopy skip tsan
    
    tsan is slow, and case ToolTest.TestRebuildTserverByLocalReplicaCopy
    maybe fail.
    
    Change-Id: I4da90d728c9fbd34c9c3c4de3fe7089c07e25b42
    Reviewed-on: http://gerrit.cloudera.org:8080/18432
    Reviewed-by: Yingchun Lai <ac...@gmail.com>
    Tested-by: Yingchun Lai <ac...@gmail.com>
---
 src/kudu/tools/kudu-tool-test.cc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/kudu/tools/kudu-tool-test.cc b/src/kudu/tools/kudu-tool-test.cc
index 8956c1d90..c87d39c55 100644
--- a/src/kudu/tools/kudu-tool-test.cc
+++ b/src/kudu/tools/kudu-tool-test.cc
@@ -7969,6 +7969,7 @@ TEST_F(ToolTest, TestLocalReplicaCopyLocal) {
 }
 
 TEST_F(ToolTest, TestRebuildTserverByLocalReplicaCopy) {
+  SKIP_IF_SLOW_NOT_ALLOWED();
   // Create replicas and fill some data.
   const int kNumTserver = 3;
   InternalMiniClusterOptions opts;