aboutsummaryrefslogtreecommitdiffstats
path: root/util/system/event_ut.cpp
diff options
context:
space:
mode:
authoryazevnul <yazevnul@yandex-team.ru>2022-02-10 16:46:48 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:48 +0300
commit9abfb1a53b7f7b791444d1378e645d8fad9b06ed (patch)
tree49e222ea1c5804306084bb3ae065bb702625360f /util/system/event_ut.cpp
parent8cbc307de0221f84c80c42dcbe07d40727537e2c (diff)
downloadydb-9abfb1a53b7f7b791444d1378e645d8fad9b06ed.tar.gz
Restoring authorship annotation for <yazevnul@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/system/event_ut.cpp')
-rw-r--r--util/system/event_ut.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/util/system/event_ut.cpp b/util/system/event_ut.cpp
index 650ba4641a..2506cb7a91 100644
--- a/util/system/event_ut.cpp
+++ b/util/system/event_ut.cpp
@@ -82,8 +82,8 @@ namespace {
}
-Y_UNIT_TEST_SUITE(EventTest) {
- Y_UNIT_TEST(WaitAndSignalTest) {
+Y_UNIT_TEST_SUITE(EventTest) {
+ Y_UNIT_TEST(WaitAndSignalTest) {
TSharedData data;
TThreadPool queue;
queue.Start(5);
@@ -95,7 +95,7 @@ Y_UNIT_TEST_SUITE(EventTest) {
UNIT_ASSERT(!data.failed);
}
- Y_UNIT_TEST(ConcurrentSignalAndWaitTest) {
+ Y_UNIT_TEST(ConcurrentSignalAndWaitTest) {
// test for problem detected by thread-sanitizer (signal/wait race) SEARCH-2113
const size_t limit = 200;
TManualEvent event[limit];
@@ -113,7 +113,7 @@ Y_UNIT_TEST_SUITE(EventTest) {
}
/** Test for a problem: http://nga.at.yandex-team.ru/5772 */
- Y_UNIT_TEST(DestructorBeforeSignalFinishTest) {
+ Y_UNIT_TEST(DestructorBeforeSignalFinishTest) {
return;
TVector<THolder<IObjectInQueue>> tasks;
for (size_t i = 0; i < 1000; ++i) {