You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by al...@apache.org on 2019/10/11 16:50:51 UTC

[kudu] branch master updated: [build] Fix a bug for memory_gc-itest

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 06621af  [build] Fix a bug for memory_gc-itest
06621af is described below

commit 06621af23fc29366f33e4950e035502457f1a3b6
Author: oclarms <oc...@gmail.com>
AuthorDate: Fri Oct 11 16:52:54 2019 +0800

    [build] Fix a bug for memory_gc-itest
    
    In CMakeList.txt, we should use KUDU_TCMALLOC_AVAILABLE to determine
    whether tcmalloc is enabled instead of TCMALLOC_ENABLED.
    
    Change-Id: I2982af9c7070ffd0f53791d4960c3bccfee4a8cc
    Reviewed-on: http://gerrit.cloudera.org:8080/14415
    Tested-by: Kudu Jenkins
    Reviewed-by: Alexey Serbin <as...@cloudera.com>
---
 src/kudu/integration-tests/CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/kudu/integration-tests/CMakeLists.txt b/src/kudu/integration-tests/CMakeLists.txt
index cd103ab..08eb111 100644
--- a/src/kudu/integration-tests/CMakeLists.txt
+++ b/src/kudu/integration-tests/CMakeLists.txt
@@ -94,7 +94,7 @@ ADD_KUDU_TEST_DEPENDENCIES(master_migration-itest
 ADD_KUDU_TEST(master_replication-itest)
 ADD_KUDU_TEST(master_sentry-itest RUN_SERIAL true NUM_SHARDS 8 PROCESSORS 4)
 ADD_KUDU_TEST(master-stress-test RUN_SERIAL true NUM_SHARDS 3)
-if (TCMALLOC_ENABLED)
+if(${KUDU_TCMALLOC_AVAILABLE})
   ADD_KUDU_TEST(memory_gc-itest)
 endif()
 ADD_KUDU_TEST(multidir_cluster-itest)