Skip to content
Snippets Groups Projects
Commit 2df4b70e authored by Tomáš Pecka's avatar Tomáš Pecka Committed by Tomáš Pecka
Browse files

Integration tests: Remove SIGCHLD handler from test childs

parent 523d0f22
No related branches found
No related tags found
1 merge request!76Integration tests: Remove SIGCHLD handler from test childs
Pipeline #34951 passed
......@@ -103,6 +103,10 @@ void _TimeoutAqlTest ( const std::chrono::microseconds & timeout, const ext::vec
FAIL ( "Fork error" );
} else if ( x == 0 ) {
/* child, run the test here */
act . sa_handler = SIG_DFL;
sigaction ( SIGCHLD, &act, NULL );
close ( g_Wakeup [ PIPE_RD ] );
close ( g_Wakeup [ PIPE_WR ] );
close ( pipefd [ PIPE_RD ] );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment