Skip to content

Commit

Permalink
Slightly deduplicate run-tests code
Browse files Browse the repository at this point in the history
  • Loading branch information
nikic committed May 20, 2020
1 parent c2068e9 commit ec1e854
Showing 1 changed file with 54 additions and 66 deletions.
120 changes: 54 additions & 66 deletions run-tests.php
Original file line number Diff line number Diff line change
Expand Up @@ -678,10 +678,11 @@ function main()
// Run selected tests.
$test_cnt = count($test_files);

verify_config();
write_information();

if ($test_cnt) {
putenv('NO_INTERACTION=1');
verify_config();
write_information();
usort($test_files, "test_sort");
$start_time = time();

Expand Down Expand Up @@ -721,91 +722,78 @@ function main()
if ($output_file != '' && $just_save_results) {
save_or_mail_results();
}

junit_save_xml();

if (getenv('REPORT_EXIT_STATUS') !== '0' &&
getenv('REPORT_EXIT_STATUS') !== 'no' && ($sum_results['FAILED'] || $sum_results['BORKED'] || $sum_results['LEAKED'])) {
exit(1);
} else {
// Compile a list of all test files (*.phpt).
$test_files = array();
$exts_tested = count($exts_to_test);
$exts_skipped = 0;
$ignored_by_ext = 0;
sort($exts_to_test);
$test_dirs = array();
$optionals = array('Zend', 'tests', 'ext', 'sapi');

foreach ($optionals as $dir) {
if (is_dir($dir)) {
$test_dirs[] = $dir;
}
}

return;
}

verify_config();
write_information();

// Compile a list of all test files (*.phpt).
$test_files = array();
$exts_tested = count($exts_to_test);
$exts_skipped = 0;
$ignored_by_ext = 0;
sort($exts_to_test);
$test_dirs = array();
$optionals = array('Zend', 'tests', 'ext', 'sapi');

foreach ($optionals as $dir) {
if (is_dir($dir)) {
$test_dirs[] = $dir;
// Convert extension names to lowercase
foreach ($exts_to_test as $key => $val) {
$exts_to_test[$key] = strtolower($val);
}
}

// Convert extension names to lowercase
foreach ($exts_to_test as $key => $val) {
$exts_to_test[$key] = strtolower($val);
}
foreach ($test_dirs as $dir) {
find_files(TEST_PHP_SRCDIR . "/{$dir}", $dir == 'ext');
}

foreach ($test_dirs as $dir) {
find_files(TEST_PHP_SRCDIR . "/{$dir}", $dir == 'ext');
}
foreach ($user_tests as $dir) {
find_files($dir, $dir == 'ext');
}

foreach ($user_tests as $dir) {
find_files($dir, $dir == 'ext');
}
$test_files = array_unique($test_files);
usort($test_files, "test_sort");

$test_files = array_unique($test_files);
usort($test_files, "test_sort");
$start_time = time();
show_start($start_time);

$start_time = time();
show_start($start_time);
$test_cnt = count($test_files);
$test_idx = 0;
run_all_tests($test_files, $environment);
$end_time = time();

$test_cnt = count($test_files);
$test_idx = 0;
run_all_tests($test_files, $environment);
$end_time = time();
if ($failed_tests_file) {
fclose($failed_tests_file);
}

if ($failed_tests_file) {
fclose($failed_tests_file);
}
if ($result_tests_file) {
fclose($result_tests_file);
}

if ($result_tests_file) {
fclose($result_tests_file);
}
// Summarize results

// Summarize results
if (0 == count($test_results)) {
echo "No tests were run.\n";
return;
}

if (0 == count($test_results)) {
echo "No tests were run.\n";
return;
}
compute_summary();

compute_summary();
show_end($end_time);
show_summary();

show_end($end_time);
show_summary();
if ($html_output) {
fclose($html_file);
}

if ($html_output) {
fclose($html_file);
save_or_mail_results();
}

save_or_mail_results();

junit_save_xml();
if (getenv('REPORT_EXIT_STATUS') !== '0' &&
getenv('REPORT_EXIT_STATUS') !== 'no' && ($sum_results['FAILED'] || $sum_results['LEAKED'])) {
if (getenv('REPORT_EXIT_STATUS') !== '0' && getenv('REPORT_EXIT_STATUS') !== 'no' &&
($sum_results['FAILED'] || $sum_results['LEAKED'])) {
exit(1);
}
exit(0);
}

if (!function_exists("hrtime")) {
Expand Down

0 comments on commit ec1e854

Please sign in to comment.