mirror of
https://github.com/php/php-src.git
synced 2026-04-26 09:28:21 +02:00
Merge branch 'PHP-7.4' into PHP-8.0
* PHP-7.4: run-tests: fixed exit code not being set on BORKED tests
This commit is contained in:
+1
-1
@@ -803,7 +803,7 @@ function main(): void
|
||||
|
||||
junit_save_xml();
|
||||
if (getenv('REPORT_EXIT_STATUS') !== '0' && getenv('REPORT_EXIT_STATUS') !== 'no' &&
|
||||
($sum_results['FAILED'] || $sum_results['LEAKED'])) {
|
||||
($sum_results['FAILED'] || $sum_results['BORKED'] || $sum_results['LEAKED'])) {
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user