summaryrefslogtreecommitdiffstats
path: root/yql/essentials/utils/fp_bits_ut.cpp
diff options
context:
space:
mode:
authorvvvv <[email protected]>2025-10-06 11:26:09 +0300
committervvvv <[email protected]>2025-10-06 11:53:26 +0300
commit60f45e69a4d7dbc6131208e16c45faf35aa5a985 (patch)
tree4daa45b52c295a178c7620e4c93921465fcf7950 /yql/essentials/utils/fp_bits_ut.cpp
parent1bded1a65a7e6e9171418f3e1c691d390125b64e (diff)
YQL-20086 utils
init commit_hash:54feccd520ebd0ab23612bc0cb830914dff9d0e8
Diffstat (limited to 'yql/essentials/utils/fp_bits_ut.cpp')
-rw-r--r--yql/essentials/utils/fp_bits_ut.cpp26
1 files changed, 13 insertions, 13 deletions
diff --git a/yql/essentials/utils/fp_bits_ut.cpp b/yql/essentials/utils/fp_bits_ut.cpp
index d6d94b56f46..b8572a265ec 100644
--- a/yql/essentials/utils/fp_bits_ut.cpp
+++ b/yql/essentials/utils/fp_bits_ut.cpp
@@ -83,23 +83,23 @@ void CanonizeFpBitsTest() {
UNIT_ASSERT(std::memcmp((const void*)&newValues[v], (const void*)&values[originalV], std::min(size_t(10), sizeof(T))) == 0);
}
}
-}
+} // namespace
Y_UNIT_TEST_SUITE(TFpBits) {
- Y_UNIT_TEST(CanonizeFloat) {
- CanonizeFpBitsTest<float>();
- }
+Y_UNIT_TEST(CanonizeFloat) {
+ CanonizeFpBitsTest<float>();
+}
- Y_UNIT_TEST(CanonizeDouble) {
- CanonizeFpBitsTest<double>();
- }
+Y_UNIT_TEST(CanonizeDouble) {
+ CanonizeFpBitsTest<double>();
+}
- Y_UNIT_TEST(CanonizeLongDouble) {
- if (NValgrind::ValgrindIsOn()) {
- return; // TODO KIKIMR-3431
- }
- CanonizeFpBitsTest<long double>();
+Y_UNIT_TEST(CanonizeLongDouble) {
+ if (NValgrind::ValgrindIsOn()) {
+ return; // TODO KIKIMR-3431
}
+ CanonizeFpBitsTest<long double>();
}
+} // Y_UNIT_TEST_SUITE(TFpBits)
-}
+} // namespace NYql