diff --git a/ydb/library/yql/dq/opt/dq_opt_hypergraph_ut.cpp b/ydb/library/yql/dq/opt/dq_opt_hypergraph_ut.cpp index ff63e92436ad..8ebb67b9d59a 100644 --- a/ydb/library/yql/dq/opt/dq_opt_hypergraph_ut.cpp +++ b/ydb/library/yql/dq/opt/dq_opt_hypergraph_ut.cpp @@ -484,7 +484,11 @@ Y_UNIT_TEST_SUITE(HypergraphBuild) { } Y_UNIT_TEST(JoinTopologiesBenchmark) { - #ifndef NDEBUG + #if defined(_asan_enabled_) + enum { CliqueSize = 0, ChainSize = 0, StarSize = 0 }; + std::cerr << "test is not running for ASAN!" << std::endl; + return; + #elif !defined(NDEBUG) enum { CliqueSize = 11, ChainSize = 71, StarSize = 15 }; #else enum { CliqueSize = 15, ChainSize = 165, StarSize = 20 };