1
0
mirror of https://github.com/php/php-src.git synced 2026-04-29 11:13:36 +02:00

MFH: Print out the WARNed section

This commit is contained in:
Hannes Magnusson
2009-05-18 14:08:23 +00:00
parent ebf4c8ddb8
commit 82c49a50f4
+13
View File
@@ -2254,6 +2254,19 @@ EXPECTED FAILED TEST SUMMARY
$failed_test_summary .= "=====================================================================\n";
}
if (count($PHP_FAILED_TESTS['WARNED'])) {
$failed_test_summary .= '
=====================================================================
WARNED TEST SUMMARY
---------------------------------------------------------------------
';
foreach ($PHP_FAILED_TESTS['WARNED'] as $failed_test_data) {
$failed_test_summary .= $failed_test_data['test_name'] . $failed_test_data['info'] . "\n";
}
$failed_test_summary .= "=====================================================================\n";
}
if (count($PHP_FAILED_TESTS['LEAKED'])) {
$failed_test_summary .= '
=====================================================================