Skip to content

Commit

Permalink
[CBO] TEST ASAN FIX (#10610)
Browse files Browse the repository at this point in the history
  • Loading branch information
pashandor789 authored Oct 18, 2024
1 parent eb88635 commit 2470133
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ydb/library/yql/dq/opt/dq_opt_hypergraph_ut.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 };
Expand Down

0 comments on commit 2470133

Please sign in to comment.