diff options
author | Daniil Cherednik <dcherednik@ydb.tech> | 2025-07-21 14:40:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-21 12:40:58 +0000 |
commit | 0f5fee13335f74fb8ec37d6bc394817e2c995877 (patch) | |
tree | 75f15aa49697fe399b8239b7d7eba4528e20897e | |
parent | 4b5dfc4cea19b1c720be8a0d878319b50dabb0a3 (diff) | |
download | ydb-0f5fee13335f74fb8ec37d6bc394817e2c995877.tar.gz |
Compile and include ibv tests on Linux only. (#21423)
-rw-r--r-- | ydb/library/actors/interconnect/rdma/ut/ya.make | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ydb/library/actors/interconnect/rdma/ut/ya.make b/ydb/library/actors/interconnect/rdma/ut/ya.make index af312f93b8d..98627f32cd4 100644 --- a/ydb/library/actors/interconnect/rdma/ut/ya.make +++ b/ydb/library/actors/interconnect/rdma/ut/ya.make @@ -1,5 +1,7 @@ UNITTEST() +IF (OS_LINUX) + SRCS( ibv_ut.cpp ) @@ -8,4 +10,6 @@ PEERDIR( contrib/libs/ibdrv ) +ENDIF() + END() |