diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2024-11-19 18:55:35 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2024-11-19 19:05:19 +0300 |
commit | 2aee27a94a33a27354bf51c3e9cc58d7dd4efa42 (patch) | |
tree | bbae886f1fa20b9b9231c72a9a9a598d9dc54ef0 | |
parent | 3f8d2c5039ffc678ebe46017875428abc7fd4918 (diff) | |
download | ydb-2aee27a94a33a27354bf51c3e9cc58d7dd4efa42.tar.gz |
Intermediate changes
commit_hash:5cb62622422884a8fbc7bd1a2d7458b4858d4450
-rw-r--r-- | yt/yt/library/process/unittests/process_ut.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/yt/yt/library/process/unittests/process_ut.cpp b/yt/yt/library/process/unittests/process_ut.cpp index 01a1468e59..15f807561f 100644 --- a/yt/yt/library/process/unittests/process_ut.cpp +++ b/yt/yt/library/process/unittests/process_ut.cpp @@ -209,6 +209,9 @@ TEST(TProcessTest, KillFinished) TEST(TProcessTest, KillZombie) { + // TODO(arkady-e1ppa): This code is for debugging test failures purposes + // remove it when investigation is complete. + ::signal(SIGCHLD, SIG_DFL); auto p = New<TSimpleProcess>("/bin/bash"); p->AddArgument("-c"); p->AddArgument("/bin/sleep 1; /bin/true"); |