diff options
author | Andrey Khalyavin <halyavin@gmail.com> | 2022-02-10 16:46:29 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:29 +0300 |
commit | f773626848a7c7456803654292e716b83d69cc12 (patch) | |
tree | db052dfcf9134f492bdbb962cb6c16cea58e1ed3 /library/cpp/messagebus/rain_check | |
parent | f43ab775d197d300eb67bd4497632b909cd7c2a5 (diff) | |
download | ydb-f773626848a7c7456803654292e716b83d69cc12.tar.gz |
Restoring authorship annotation for Andrey Khalyavin <halyavin@gmail.com>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/messagebus/rain_check')
-rw-r--r-- | library/cpp/messagebus/rain_check/core/spawn_ut.cpp | 4 | ||||
-rw-r--r-- | library/cpp/messagebus/rain_check/test/helper/misc.h | 6 | ||||
-rw-r--r-- | library/cpp/messagebus/rain_check/test/perftest/perftest.cpp | 8 |
3 files changed, 9 insertions, 9 deletions
diff --git a/library/cpp/messagebus/rain_check/core/spawn_ut.cpp b/library/cpp/messagebus/rain_check/core/spawn_ut.cpp index ba5a5e41cf..0435262b59 100644 --- a/library/cpp/messagebus/rain_check/core/spawn_ut.cpp +++ b/library/cpp/messagebus/rain_check/core/spawn_ut.cpp @@ -7,7 +7,7 @@ #include <util/system/event.h> -#include <array> +#include <array> using namespace NRainCheck; using namespace NActor; @@ -116,7 +116,7 @@ Y_UNIT_TEST_SUITE(Spawn) { { } - std::array<TSubtaskCompletion, 3> Subtasks; + std::array<TSubtaskCompletion, 3> Subtasks; TContinueFunc Start() override { if (I == 1000) { diff --git a/library/cpp/messagebus/rain_check/test/helper/misc.h b/library/cpp/messagebus/rain_check/test/helper/misc.h index 9150be4d2f..7b37051f49 100644 --- a/library/cpp/messagebus/rain_check/test/helper/misc.h +++ b/library/cpp/messagebus/rain_check/test/helper/misc.h @@ -2,7 +2,7 @@ #include <library/cpp/messagebus/rain_check/core/rain_check.h> -#include <array> +#include <array> namespace NRainCheck { struct TNopSimpleTask: public ISimpleTask { @@ -32,7 +32,7 @@ namespace NRainCheck { { } - std::array<TSubtaskCompletion, 2> Completion; + std::array<TSubtaskCompletion, 2> Completion; void Run() override; }; @@ -47,7 +47,7 @@ namespace NRainCheck { { } - std::array<TSubtaskCompletion, 2> Completion; + std::array<TSubtaskCompletion, 2> Completion; TContinueFunc Start() override; diff --git a/library/cpp/messagebus/rain_check/test/perftest/perftest.cpp b/library/cpp/messagebus/rain_check/test/perftest/perftest.cpp index 22edbd8c6b..d34ed1a8f8 100644 --- a/library/cpp/messagebus/rain_check/test/perftest/perftest.cpp +++ b/library/cpp/messagebus/rain_check/test/perftest/perftest.cpp @@ -4,7 +4,7 @@ #include <util/datetime/base.h> -#include <array> +#include <array> using namespace NRainCheck; @@ -38,7 +38,7 @@ struct TCoroOuter: public ICoroTask { do { for (unsigned i = 0; i < current; ++i) { - std::array<TSubtaskCompletion, SUBTASKS> completion; + std::array<TSubtaskCompletion, SUBTASKS> completion; for (unsigned j = 0; j < SUBTASKS; ++j) { //SpawnSubtask<TNopSimpleTask>(Env, &completion[j]); @@ -82,7 +82,7 @@ struct TSimpleOuter: public ISimpleTask { return &TSimpleOuter::Spawn; } - std::array<TSubtaskCompletion, SUBTASKS> Completion; + std::array<TSubtaskCompletion, SUBTASKS> Completion; TContinueFunc Spawn() { for (unsigned j = 0; j < SUBTASKS; ++j) { @@ -124,7 +124,7 @@ struct TReproduceCrashTask: public ISimpleTask { { } - std::array<TSubtaskCompletion, SUBTASKS> Completion; + std::array<TSubtaskCompletion, SUBTASKS> Completion; TContinueFunc Start() override { for (unsigned j = 0; j < 2; ++j) { |