Skip to content

Commit 8162c3d

Browse files
committed
Merge branch 'PHP-7.4' into PHP-8.0
* PHP-7.4: run-tests: fixed exit code not being set on BORKED tests
2 parents 3f282e5 + 67bb06c commit 8162c3d

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
@@ -803,7 +803,7 @@ function main(): void
803803

804804
junit_save_xml();
805805
if (getenv('REPORT_EXIT_STATUS') !== '0' && getenv('REPORT_EXIT_STATUS') !== 'no' &&
806-
($sum_results['FAILED'] || $sum_results['LEAKED'])) {
806+
($sum_results['FAILED'] || $sum_results['BORKED'] || $sum_results['LEAKED'])) {
807807
exit(1);
808808
}
809809
}

0 commit comments

Comments
 (0)