summaryrefslogtreecommitdiff
path: root/deps/uv/test/echo-server.c
diff options
context:
space:
mode:
Diffstat (limited to 'deps/uv/test/echo-server.c')
-rw-r--r--deps/uv/test/echo-server.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/deps/uv/test/echo-server.c b/deps/uv/test/echo-server.c
index bfed67675d..a38e975d48 100644
--- a/deps/uv/test/echo-server.c
+++ b/deps/uv/test/echo-server.c
@@ -340,6 +340,7 @@ HELPER_IMPL(tcp4_echo_server) {
if (tcp4_echo_start(TEST_PORT))
return 1;
+ notify_parent_process();
uv_run(loop, UV_RUN_DEFAULT);
return 0;
}
@@ -351,6 +352,7 @@ HELPER_IMPL(tcp6_echo_server) {
if (tcp6_echo_start(TEST_PORT))
return 1;
+ notify_parent_process();
uv_run(loop, UV_RUN_DEFAULT);
return 0;
}
@@ -362,6 +364,7 @@ HELPER_IMPL(pipe_echo_server) {
if (pipe_echo_start(TEST_PIPENAME))
return 1;
+ notify_parent_process();
uv_run(loop, UV_RUN_DEFAULT);
return 0;
}
@@ -373,6 +376,7 @@ HELPER_IMPL(udp4_echo_server) {
if (udp4_echo_start(TEST_PORT))
return 1;
+ notify_parent_process();
uv_run(loop, UV_RUN_DEFAULT);
return 0;
}