MDL-39752 behat: Show output of failed install process

This commit is contained in:
Rajesh Taneja 2015-03-04 16:29:03 +08:00
parent a2754d791b
commit b32b2284fe

View File

@ -134,7 +134,11 @@ if ($options['diag'] || $options['enable'] || $options['disable']) {
$exitcodes = print_combined_install_output($processes);
foreach ($exitcodes as $name => $exitcode) {
if ($exitcode != 0) {
echo "Failed process [[$name]]" . PHP_EOL;
echo $processes[$name]->getOutput();
echo PHP_EOL;
echo $processes[$name]->getErrorOutput();
echo PHP_EOL . PHP_EOL;
}
$status = (bool)$status || (bool)$exitcode;
}
@ -144,7 +148,11 @@ if ($options['diag'] || $options['enable'] || $options['disable']) {
$exitcodes = print_combined_install_output($processes);
foreach ($exitcodes as $name => $exitcode) {
if ($exitcode != 0) {
echo "Failed process [[$name]]" . PHP_EOL;
echo $processes[$name]->getOutput();
echo PHP_EOL;
echo $processes[$name]->getErrorOutput();
echo PHP_EOL . PHP_EOL;
}
$status = (bool)$status || (bool)$exitcode;
}