diff options
author | max42 <max42@yandex-team.com> | 2023-06-30 11:13:34 +0300 |
---|---|---|
committer | max42 <max42@yandex-team.com> | 2023-06-30 11:13:34 +0300 |
commit | 3e1899838408bbad47622007aa382bc8a2b01f87 (patch) | |
tree | 0f21c1e6add187ddb6c3ccc048a7d640ce03fb87 /library/cpp/yt/cpu_clock/unittests/clock_ut.cpp | |
parent | 5463eb3f5e72a86f858a3d27c886470a724ede34 (diff) | |
download | ydb-3e1899838408bbad47622007aa382bc8a2b01f87.tar.gz |
Revert "YT-19324: move YT provider to ydb/library/yql"
This reverts commit ca272f12fdd0e8d5c3e957fc87939148f1caaf72, reversing
changes made to 49f8acfc8b0b5c0071b804423bcf53fda26c7c12.
Diffstat (limited to 'library/cpp/yt/cpu_clock/unittests/clock_ut.cpp')
-rw-r--r-- | library/cpp/yt/cpu_clock/unittests/clock_ut.cpp | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/library/cpp/yt/cpu_clock/unittests/clock_ut.cpp b/library/cpp/yt/cpu_clock/unittests/clock_ut.cpp deleted file mode 100644 index bd9cb6d4be..0000000000 --- a/library/cpp/yt/cpu_clock/unittests/clock_ut.cpp +++ /dev/null @@ -1,46 +0,0 @@ -#include <gtest/gtest.h> - -#include <library/cpp/yt/cpu_clock/clock.h> - -namespace NYT { -namespace { - -//////////////////////////////////////////////////////////////////////////////// - -template <class T> -i64 DiffMS(T a, T b) -{ - return a >= b - ? static_cast<i64>(a.MilliSeconds()) - static_cast<i64>(b.MilliSeconds()) - : DiffMS(b, a); -} - -TEST(TTimingTest, GetInstant) -{ - GetInstant(); - - EXPECT_LE(DiffMS(GetInstant(), TInstant::Now()), 10); -} - -TEST(TTimingTest, InstantVSCpuInstant) -{ - auto instant1 = TInstant::Now(); - auto cpuInstant = InstantToCpuInstant(instant1); - auto instant2 = CpuInstantToInstant(cpuInstant); - EXPECT_LE(DiffMS(instant1, instant2), 10); -} - -TEST(TTimingTest, DurationVSCpuDuration) -{ - auto cpuInstant1 = GetCpuInstant(); - constexpr auto duration1 = TDuration::MilliSeconds(100); - Sleep(duration1); - auto cpuInstant2 = GetCpuInstant(); - auto duration2 = CpuDurationToDuration(cpuInstant2 - cpuInstant1); - EXPECT_LE(DiffMS(duration1, duration2), 10); -} - -//////////////////////////////////////////////////////////////////////////////// - -} // namespace -} // namespace NYT |