@@ -153,7 +153,7 @@ function main(): void
153
153
*/
154
154
global $ DETAILED , $ PHP_FAILED_TESTS , $ SHOW_ONLY_GROUPS , $ argc , $ argv , $ cfg ,
155
155
$ cfgfiles , $ cfgtypes , $ conf_passed , $ end_time , $ environment ,
156
- $ exts_skipped , $ exts_tested , $ exts_to_test , $ failed_tests_file ,
156
+ $ exts_to_test , $ failed_tests_file ,
157
157
$ ignored_by_ext , $ ini_overwrites , $ is_switch , $ colorize ,
158
158
$ log_format , $ matches , $ no_clean , $ no_file_cache ,
159
159
$ optionals , $ pass_option_n , $ pass_options ,
@@ -735,8 +735,6 @@ function main(): void
735
735
} else {
736
736
// Compile a list of all test files (*.phpt).
737
737
$ test_files = [];
738
- $ exts_tested = $ exts_to_test ;
739
- $ exts_skipped = [];
740
738
$ ignored_by_ext = [];
741
739
sort ($ exts_to_test );
742
740
$ test_dirs = [];
@@ -3060,7 +3058,7 @@ function compute_summary(): void
3060
3058
3061
3059
function get_summary (bool $ show_ext_summary ): string
3062
3060
{
3063
- global $ exts_skipped , $ exts_tested , $ n_total , $ sum_results , $ percent_results , $ end_time , $ start_time , $ failed_test_summary , $ PHP_FAILED_TESTS , $ valgrind ;
3061
+ global $ n_total , $ sum_results , $ percent_results , $ end_time , $ start_time , $ failed_test_summary , $ PHP_FAILED_TESTS , $ valgrind ;
3064
3062
3065
3063
$ x_total = $ n_total - $ sum_results ['SKIPPED ' ] - $ sum_results ['BORKED ' ];
3066
3064
@@ -3082,9 +3080,6 @@ function get_summary(bool $show_ext_summary): string
3082
3080
=====================================================================
3083
3081
TEST RESULT SUMMARY
3084
3082
---------------------------------------------------------------------
3085
- Exts skipped : ' . sprintf ('%4d ' , count ($ exts_skipped )) . ' ( ' . implode (', ' , $ exts_skipped ) . ')
3086
- Exts tested : ' . sprintf ('%4d ' , count ($ exts_tested )) . '
3087
- ---------------------------------------------------------------------
3088
3083
' ;
3089
3084
}
3090
3085
0 commit comments