Skip to content

Commit

Permalink
add missing define
Browse files Browse the repository at this point in the history
  • Loading branch information
vporyadke committed Oct 28, 2024
1 parent fdd604a commit 934c329
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions ydb/core/mind/hive/object_distribution_ut.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,16 @@ using namespace NHive;
#define Ctest Cerr
#endif

#ifdef address_sanitizer_enabled
#define SANITIZER_TYPE address
#endif
#ifdef memory_sanitizer_enabled
#define SANITIZER_TYPE memory
#endif
#ifdef thread_sanitizer_enabled
#define SANITIZER_TYPE thread
#endif

Y_UNIT_TEST_SUITE(ObjectDistribution) {
Y_UNIT_TEST(TestImbalanceCalcualtion) {
static constexpr size_t NUM_NODES = 8;
Expand Down

0 comments on commit 934c329

Please sign in to comment.