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

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

commit 2e1c6794662ad8f7cc718ebff5361c570e96102a
Author: Adar Dembo <[email protected]>
AuthorDate: Mon Sep 30 20:59:32 2019 -0700

    table_locations-itest: restrict benchmark to slow mode
    
    The CreateTable RPC can time out in TSAN mode, and perhaps in ASAN as well.
    So let's just restrict it to slow mode, which is what we usually do in tests
    that create a replicated table with many tablets.
    
    Change-Id: I867b629be2f51838c453b078b5617042fc8468aa
    Reviewed-on: http://gerrit.cloudera.org:8080/14328
    Reviewed-by: Andrew Wong <[email protected]>
    Reviewed-by: Alexey Serbin <[email protected]>
    Tested-by: Adar Dembo <[email protected]>
---
 src/kudu/integration-tests/table_locations-itest.cc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/kudu/integration-tests/table_locations-itest.cc 
b/src/kudu/integration-tests/table_locations-itest.cc
index e3d2cef..63adf1b 100644
--- a/src/kudu/integration-tests/table_locations-itest.cc
+++ b/src/kudu/integration-tests/table_locations-itest.cc
@@ -389,6 +389,7 @@ TEST_F(TableLocationsWithTSLocationTest, TestGetTSLocation) 
{
 }
 
 TEST_F(TableLocationsTest, GetTableLocationsBenchmark) {
+  SKIP_IF_SLOW_NOT_ALLOWED();
   const int kNumSplits = FLAGS_benchmark_num_tablets - 1;
   const int kNumThreads = FLAGS_benchmark_num_threads;
   const auto kRuntime = MonoDelta::FromSeconds(FLAGS_benchmark_runtime_secs);

Reply via email to