diff options
author | alexv-smirnov <alex@ydb.tech> | 2023-03-15 19:59:12 +0300 |
---|---|---|
committer | alexv-smirnov <alex@ydb.tech> | 2023-03-15 19:59:12 +0300 |
commit | 056bb284ccf8dd6793ec3a54ffa36c4fb2b9ad11 (patch) | |
tree | 4740980126f32e3af7937ba0ca5f83e59baa4ab0 /util/datetime | |
parent | 269126dcced1cc8b53eb4398b4a33e5142f10290 (diff) | |
download | ydb-056bb284ccf8dd6793ec3a54ffa36c4fb2b9ad11.tar.gz |
add library/cpp/actors, ymake build to ydb oss export
Diffstat (limited to 'util/datetime')
-rw-r--r-- | util/datetime/benchmark/gmtime_r/ya.make | 13 | ||||
-rw-r--r-- | util/datetime/benchmark/ya.make | 5 | ||||
-rw-r--r-- | util/datetime/ut/ya.make | 15 | ||||
-rw-r--r-- | util/datetime/ya.make | 9 |
4 files changed, 42 insertions, 0 deletions
diff --git a/util/datetime/benchmark/gmtime_r/ya.make b/util/datetime/benchmark/gmtime_r/ya.make new file mode 100644 index 0000000000..32acd7c1c0 --- /dev/null +++ b/util/datetime/benchmark/gmtime_r/ya.make @@ -0,0 +1,13 @@ +SUBSCRIBER(g:util-subscribers) + +Y_BENCHMARK() + +PEERDIR( + util/draft +) + +SRCS( + main.cpp +) + +END() diff --git a/util/datetime/benchmark/ya.make b/util/datetime/benchmark/ya.make new file mode 100644 index 0000000000..6c9ed6cfd4 --- /dev/null +++ b/util/datetime/benchmark/ya.make @@ -0,0 +1,5 @@ +SUBSCRIBER(g:util-subscribers) + +RECURSE( + gmtime_r +) diff --git a/util/datetime/ut/ya.make b/util/datetime/ut/ya.make new file mode 100644 index 0000000000..70f63305d5 --- /dev/null +++ b/util/datetime/ut/ya.make @@ -0,0 +1,15 @@ +UNITTEST_FOR(util) + +SUBSCRIBER(g:util-subscribers) + +SRCS( + datetime/base_ut.cpp + datetime/cputimer_ut.cpp + datetime/parser_deprecated_ut.cpp + datetime/parser_ut.cpp + datetime/uptime_ut.cpp +) + +INCLUDE(${ARCADIA_ROOT}/util/tests/ya_util_tests.inc) + +END() diff --git a/util/datetime/ya.make b/util/datetime/ya.make new file mode 100644 index 0000000000..f4a66598a0 --- /dev/null +++ b/util/datetime/ya.make @@ -0,0 +1,9 @@ +SUBSCRIBER(g:util-subscribers) + +RECURSE( + benchmark +) + +RECURSE_FOR_TESTS( + ut +) |