aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrobot-piglet <robot-piglet@yandex-team.com>2024-11-19 18:55:35 +0300
committerrobot-piglet <robot-piglet@yandex-team.com>2024-11-19 19:05:19 +0300
commit2aee27a94a33a27354bf51c3e9cc58d7dd4efa42 (patch)
treebbae886f1fa20b9b9231c72a9a9a598d9dc54ef0
parent3f8d2c5039ffc678ebe46017875428abc7fd4918 (diff)
downloadydb-2aee27a94a33a27354bf51c3e9cc58d7dd4efa42.tar.gz
Intermediate changes
commit_hash:5cb62622422884a8fbc7bd1a2d7458b4858d4450
-rw-r--r--yt/yt/library/process/unittests/process_ut.cpp3
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");