Skip to content

Commit 1b2c0a7

Browse files
authored
[ICRDMA] Restore rdma serialization ut (#30059)
1 parent 3b22f46 commit 1b2c0a7

File tree

1 file changed

+4
-4
lines changed
  • ydb/core/blobstorage/ut_blobstorage

1 file changed

+4
-4
lines changed

ydb/core/blobstorage/ut_blobstorage/get.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,10 @@ Y_UNIT_TEST_SUITE(Get) {
111111
SendGet(test, originalBlobId, data, NKikimrProto::BLOCKED, TEvBlobStorage::TEvGet::TReaderTabletData(tabletId, tabletGeneration));
112112
}
113113

114-
/* Y_UNIT_TEST(TestRdmaRegiseredMemory) {
114+
Y_UNIT_TEST(TestRdmaRegiseredMemory) {
115+
#if defined(_msan_enabled_)
116+
return;
117+
#endif
115118
TEnvironmentSetup env(true);
116119
TTestInfo test = InitTest(env);
117120

@@ -150,8 +153,6 @@ Y_UNIT_TEST_SUITE(Get) {
150153
auto memReg = NInterconnect::NRdma::TryExtractFromRcBuf(chunk);
151154
UNIT_ASSERT_C(!memReg.Empty(), "unable to extract mem region from chunk");
152155
UNIT_ASSERT_VALUES_EQUAL_C(memReg.GetSize(), size, "invalid size for memReg");
153-
UNIT_ASSERT_C(memReg.GetLKey(0) != 0, "invalid lkey");
154-
UNIT_ASSERT_C(memReg.GetRKey(0) != 0, "invalid rkey");
155156
}
156157
}
157158
}
@@ -160,5 +161,4 @@ Y_UNIT_TEST_SUITE(Get) {
160161

161162
SendGet(test, originalBlobId, data, NKikimrProto::OK, TEvBlobStorage::TEvGet::TReaderTabletData(tabletId, tabletGeneration));
162163
}
163-
*/
164164
}

0 commit comments

Comments
 (0)