History log of /PHP-8.2/ext/opcache/tests/preload_method_static_vars.phpt (Results 1 – 8 of 8)
Revision Date Author Comments
# 53763e14 17-Mar-2023 Arnaud Le Blanc

Remove xfail from tests that do not fail anymore (#10871)


# c12141c8 20-May-2022 Arnaud Le Blanc

Reduce the scope of XFAIL (#8592)


# c88dc44a 20-May-2022 Arnaud Le Blanc

Revert "XFAIL tests (GH-8588)"

This reverts commit f2ac4f206a5c68d9a25c352e6eb830bc942bc130.


# f2ac4f20 20-May-2022 Arnaud Le Blanc

XFAIL tests (GH-8588)


# 9a1da9f6 22-Feb-2021 Nikita Popov

Don't use separate static variables in inherited methods

RFC: https://wiki.php.net/rfc/static_variable_inheritance

Closes GH-6719.


# e9f783fc 01-Apr-2021 Max Semenik

Migrate skip checks to --EXTENSIONS--, p3

For rationale, see #6787

Extensions migrated in part 3:
* ftp
* gmp
* iconv
* opcache
* shmop


# 5d160e30 17-Feb-2021 Nikita Popov

Fix static variable behavior with inheritance

When a method is inherited, the static variables will now always
use the initial values, rather than the values at the time of
inheritan

Fix static variable behavior with inheritance

When a method is inherited, the static variables will now always
use the initial values, rather than the values at the time of
inheritance. As such, behavior no longer depends on whether
inheritance happens before or after a method has been called.

This is implemented by always keeping static_variables as the
original values, and static_variables_ptr as the modified copy.

Closes GH-6705.

show more ...


# 670fe594 04-Nov-2020 Nikita Popov

Fix static variable in methods inheritance during preloading

This is now "bug compatible" with the normal behavior, and more
imporantly, does not crash :)