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/thread | |
parent | 269126dcced1cc8b53eb4398b4a33e5142f10290 (diff) | |
download | ydb-056bb284ccf8dd6793ec3a54ffa36c4fb2b9ad11.tar.gz |
add library/cpp/actors, ymake build to ydb oss export
Diffstat (limited to 'util/thread')
-rw-r--r-- | util/thread/ut/ya.make | 17 | ||||
-rw-r--r-- | util/thread/ya.make | 5 |
2 files changed, 22 insertions, 0 deletions
diff --git a/util/thread/ut/ya.make b/util/thread/ut/ya.make new file mode 100644 index 0000000000..ade94fb405 --- /dev/null +++ b/util/thread/ut/ya.make @@ -0,0 +1,17 @@ +UNITTEST_FOR(util) + +SUBSCRIBER(g:util-subscribers) + +SRCS( + thread/factory_ut.cpp + thread/lfqueue_ut.cpp + thread/lfstack_ut.cpp + thread/pool_ut.cpp + thread/singleton_ut.cpp +) + +PEERDIR( + library/cpp/threading/future +) + +END() diff --git a/util/thread/ya.make b/util/thread/ya.make new file mode 100644 index 0000000000..08f8a28a88 --- /dev/null +++ b/util/thread/ya.make @@ -0,0 +1,5 @@ +SUBSCRIBER(g:util-subscribers) + +RECURSE_FOR_TESTS( + ut +) |