If i add a timeout to a process, this configuration is not taken into account
Example with tests/processes.php:
$process1 = new Process(['sleep', '120'], $rootDir);
$process1->setTimeout(1.0);
$process1->start();
$process1->wait();
echo $process1->getExecutionTime();