Skip to content

Commit 67bb06c

Browse files
committed
Merge branch 'PHP-7.3' into PHP-7.4
* PHP-7.3: run-tests: fixed exit code not being set on BORKED tests
2 parents 81396ea + 729cd8b commit 67bb06c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

run-tests.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -797,7 +797,7 @@ function main()
797797

798798
junit_save_xml();
799799
if (getenv('REPORT_EXIT_STATUS') !== '0' &&
800-
getenv('REPORT_EXIT_STATUS') !== 'no' && ($sum_results['FAILED'] || $sum_results['LEAKED'])) {
800+
getenv('REPORT_EXIT_STATUS') !== 'no' && ($sum_results['FAILED'] || $sum_results['BORKED'] || $sum_results['LEAKED'])) {
801801
exit(1);
802802
}
803803
exit(0);

0 commit comments

Comments
 (0)