Closed thekid closed 3 years ago
Most probably related to php/php-src@091c0920b9db057a54dc43ece6e864bce6818d5e, which is a huge diff (52,924 additions and 29,617 deletions).
I've opened a PHP bug: https://bugs.php.net/bug.php?id=80963
Quoting from the bug:
This is a tricky one. The data format that the library uses has changed, and will now only contain a list of transitions up until the last time the rules changed.
For America/New_York, that was in 2007, and Europe/London, in 1996
The tests in question have been disabled for the time being by only running them with PHP up until 8.1.0-dev:
$ grep -Hirn -A 1 8.1.0-dev src/test/php/ | cut -d / -f 6-
unittest/util/CalendarTest.class.php:89: #[Test, Action(eval: 'new RuntimeVersion("<8.1.0-dev")')]
unittest/util/CalendarTest.class.php-90- public function testCalendarDSTBegin() {
--
unittest/util/CalendarTest.class.php:100: #[Test, Action(eval: 'new RuntimeVersion("<8.1.0-dev")')]
unittest/util/CalendarTest.class.php-101- public function testCalendarDSTBeginByDate() {
--
unittest/util/CalendarTest.class.php:111: #[Test, Action(eval: 'new RuntimeVersion("<8.1.0-dev")')]
unittest/util/CalendarTest.class.php-112- public function testCalendarDSTBeginUS() {
--
unittest/util/CalendarTest.class.php:121: #[Test, Action(eval: 'new RuntimeVersion("<8.1.0-dev")')]
unittest/util/CalendarTest.class.php-122- public function testCalendarDSTEnd() {
--
unittest/util/TimeZoneTest.class.php:43: #[Test, Action(eval: 'new RuntimeVersion("<8.1.0-dev")')]
unittest/util/TimeZoneTest.class.php-44- public function previousTransition() {
--
unittest/util/TimeZoneTest.class.php:52: #[Test, Action(eval: 'new RuntimeVersion("<8.1.0-dev")')]
unittest/util/TimeZoneTest.class.php-53- public function previousPreviousTransition() {
--
unittest/util/TimeZoneTest.class.php:62: #[Test, Action(eval: 'new RuntimeVersion("<8.1.0-dev")')]
unittest/util/TimeZoneTest.class.php-63- public function previousNextTransition() {
--
unittest/util/TimeZoneTest.class.php:72: #[Test, Action(eval: 'new RuntimeVersion("<8.1.0-dev")')]
unittest/util/TimeZoneTest.class.php-73- public function nextTransition() {
https://bugs.php.net/bug.php?id=80963 was closed on August 8th, retesting with current PHP verifies this once again works as expected.
With a current PHP 8.1 build, we see these when running the date & time test suite.
PHP 8.0, expected result
PHP 8.1-dev, incorrect