Skip to content

Commit f6fbe13

Browse files
committed
Rename run-test.php to run-tests.php in the test packs
In the php-src repository, the test runner is named run-tests.php, but when it is copied to the tests packs, it is renamed to run-test.php. This renaming does not make sense, and is actually somewhat confusing. Although changing the name back to run-tests.php constitutes a BC break, we think the benefit of having a single name outweights the disadvantages in the long run.
1 parent 03bd433 commit f6fbe13

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

UPGRADING

+4
Original file line numberDiff line numberDiff line change
@@ -413,6 +413,10 @@ PHP 8.0 UPGRADE NOTES
413413
12. Windows Support
414414
========================================
415415

416+
- php-test-pack:
417+
. The test runner has been renamed from run-test.php to run-tests.php, to
418+
match its name in php-src.
419+
416420
========================================
417421
13. Other Changes
418422
========================================

win32/build/mkdist.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ function make_phar_dot_phar($dist_dir)
496496
foreach ($dirs as $dir) {
497497
copy_test_dir($dir, $test_dir);
498498
}
499-
copy('run-tests.php', $test_dir . '/run-test.php');
499+
copy('run-tests.php', $test_dir . '/run-tests.php');
500500

501501
/* change this next line to true to use good-old
502502
* hand-assembled go-pear-bundle from the snapshot template */

0 commit comments

Comments
 (0)