php-src/Zend/tests
Nikita Popov f182309e87 Refactor operator implementations
Instead of looping, use straight-line code with the following
layout:

1. Try to apply the base operation on the dereferenced operands.
2. Try overloaded object operations.
3. Try to convert operands to number, else error out.
4. Apply the base operation on the converted operands.

This makes the code easier to reason about and fixes some edge-case
bugs:

1. We should only try invoking operator overloading once prior to
   type conversion. Previously it was invoked both before and after
   type conversion.
2. We should not modify any values if an exception is thrown.
   Previously we sometimes modified the LHS of a compound assignment
   operator.
3. If conversion of the first operand fails, we no longer try to
   convert the second operand. I think the previous behavior here
   was fine as well, but this still seems a more typical.

This will also make some followup changes I have in mind simpler.
2020-03-31 20:49:39 +02:00
..
anon Reindent phpt files 2020-02-03 22:52:20 +01:00
arg_unpack Reindent phpt files 2020-02-03 22:52:20 +01:00
array_unpack Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
arrow_functions Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
assert Handle static return type in AST printer 2020-02-19 09:45:41 +01:00
ast [ast] Fix exporting **= in expansion of assign op 2017-01-08 18:43:47 +01:00
bug39542 Reindent phpt files 2020-02-03 22:52:20 +01:00
bug67436 Reindent phpt files 2020-02-03 22:52:20 +01:00
closures Reindent phpt files 2020-02-03 22:52:20 +01:00
constants Fix permissions 2018-09-21 14:12:25 +02:00
function_arguments Change argument error message format 2020-02-26 15:00:08 +01:00
generators Change argument error message format 2020-02-26 15:00:08 +01:00
grammar Reindent phpt files 2020-02-03 22:52:20 +01:00
list Use EXPECT instead of EXPECTF when possible 2018-02-20 21:53:48 +01:00
multibyte Reindent phpt files 2020-02-03 22:52:20 +01:00
nullable_types Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
object_types Change argument error message format 2020-02-26 15:00:08 +01:00
return_types Make type error messages more consistent 2020-02-17 14:22:17 +01:00
traits Check abstract method signatures coming from traits 2020-03-26 10:07:22 +01:00
try Reindent phpt files 2020-02-03 22:52:20 +01:00
type_declarations Automatically implement Stringable interface 2020-03-02 15:25:33 +01:00
typehints Change argument error message format 2020-02-26 15:00:08 +01:00
use_const Rename *.php files in Zend/tests to *.inc 2018-09-23 17:20:42 +02:00
use_function Reindent phpt files 2020-02-03 22:52:20 +01:00
variadic Change argument error message format 2020-02-26 15:00:08 +01:00
varSyntax Allow arbitrary expressions in new/instanceof using () syntax 2020-02-11 12:33:23 +01:00
weakrefs Reindent phpt files 2020-02-03 22:52:20 +01:00
001.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
002.phpt Promote some warnings to Errors in Zend basic functions 2020-03-31 16:32:58 +02:00
003.phpt Promote some warnings to Errors in Zend basic functions 2020-03-31 16:32:58 +02:00
004.phpt Promote some warnings to Errors in Zend basic functions 2020-03-31 16:32:58 +02:00
005.phpt Make zpp failures always throw, independent of strict_types 2019-03-11 11:32:20 +01:00
006.phpt Promote some warnings to Errors in Zend basic functions 2020-03-31 16:32:58 +02:00
008.phpt Change argument error message format 2020-02-26 15:00:08 +01:00
009.phpt Change argument error message format 2020-02-26 15:00:08 +01:00
010.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
011.phpt Promote some warnings to Errors in Zend basic functions 2020-03-31 16:32:58 +02:00
012.phpt Adjust tests for zpp TypeError change 2019-03-11 11:32:20 +01:00
013.phpt Adjust tests for zpp TypeError change 2019-03-11 11:32:20 +01:00
014.inc
014.phpt Merge branch 'PHP-7.4' 2019-03-15 23:36:47 +01:00
015.phpt Promote some warnings to Errors in Zend basic functions 2020-03-31 16:32:58 +02:00
016.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
017.phpt Adjust tests for zpp TypeError change 2019-03-11 11:32:20 +01:00
018.phpt Make constant() error handling consistent with plain const lookup 2020-01-10 13:39:56 +01:00
019.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
020.phpt Promote some warnings to Errors in Zend basic functions 2020-03-31 16:32:58 +02:00
021.phpt
022.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
023.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
024.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
025.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
026.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
027.phpt
028.phpt Fix #49555: Improve "function must be a string" error message 2020-01-08 14:32:11 +01:00
029.phpt
030.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
031.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
032.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
033.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
034.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
035.phpt
036.phpt Convert "Illegal offset type" warnings to exceptions 2019-09-27 13:00:07 +02:00
037.phpt
038.phpt Convert "Illegal offset type" warnings to exceptions 2019-09-27 13:00:07 +02:00
67468.phpt Make test run on non debug builds 2018-08-05 05:05:11 -03:00
abstract_inheritance_001.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
abstract_inheritance_002.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
abstract_inheritance_003.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
abstract-static.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
access_modifiers_001.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
access_modifiers_002.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
access_modifiers_003.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
access_modifiers_004.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
access_modifiers_005.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
access_modifiers_006.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
access_modifiers_007.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
access_modifiers_008.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
access_modifiers_009.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
access_modifiers_010.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
access_modifiers_011.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
access_modifiers_012.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
access_modifiers_013.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
add_001.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
add_002.phpt Refactor operator implementations 2020-03-31 20:49:39 +02:00
add_003.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
add_004.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
add_005.phpt Use serialize_precision for var_dump() 2020-02-25 09:51:32 +01:00
add_006.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
add_007.phpt Refactor operator implementations 2020-03-31 20:49:39 +02:00
and_001.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
anon_class_name.phpt Improve generated names for anonymous classes 2020-02-17 12:21:33 +01:00
argument_restriction_001.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
argument_restriction_002.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
argument_restriction_003.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
argument_restriction_004.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
argument_restriction_005.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
argument_restriction_006.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
array_addition_not_commutative.phpt
array_append_COW.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
array_hash_zero.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
array_literal_next_element_error.phpt Convert "cannot add element" warning to exception 2019-09-27 13:00:07 +02:00
array_offset.phpt Fix typo in tests 2019-10-10 15:57:57 +02:00
array_unpack_string_keys.phpt Fix crash when unpacking into array literal with string keys 2019-10-04 10:11:30 +02:00
array_unshift_COW.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
array_with_refs_identical.phpt
ArrayAccess_indirect_append.phpt
assign_coalesce_001.phpt Implement ??= operator 2019-01-22 11:12:04 +01:00
assign_coalesce_002.phpt Implement ??= operator 2019-01-22 11:12:04 +01:00
assign_coalesce_003.phpt Implement ??= operator 2019-01-22 11:12:04 +01:00
assign_coalesce_004.phpt Implement ??= operator 2019-01-22 11:12:04 +01:00
assign_coalesce_005.phpt Implement ??= operator 2019-01-22 11:12:04 +01:00
assign_coalesce_006.phpt Fix use-after-free with delayed interned memoized const operand 2019-10-04 10:38:11 +02:00
assign_dim_obj_null_return.phpt Promote write "use scalar as array" warning to Error 2019-09-27 15:49:18 +02:00
assign_obj_ref_byval_function.phpt Fix invalid function by-ref prop assign handling 2019-04-08 10:18:26 +02:00
assign_obj_ref_return.phpt Deref slow-path ASSIGN_OBJ result 2020-02-10 10:42:06 +01:00
assign_ref_error_var_handling.phpt Convert "cannot add element" warning to exception 2019-09-27 13:00:07 +02:00
assign_ref_func_leak.phpt Fix leak in assign_ref with function 2019-12-18 17:18:10 +01:00
assign_ref_to_overloaded_prop.phpt Error on by-ref assign to overloaded prop returning ref 2018-06-09 18:42:22 +02:00
assign_to_obj_001.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
assign_to_obj_002.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
assign_to_var_001.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
assign_to_var_002.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
assign_to_var_003.phpt Convert some notices to warnings 2019-10-02 10:34:08 +02:00
assign_to_var_004.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
ast_serialize_backtick_literal.phpt
binary-32bit.phpt Use serialize_precision for var_dump() 2020-02-25 09:51:32 +01:00
binary.phpt Use serialize_precision for var_dump() 2020-02-25 09:51:32 +01:00
break_error_001.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
break_error_002.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
break_error_003.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
break_error_004.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug18556.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug19859.phpt Remove zend_version() checks from tests 2017-01-30 22:50:25 +01:00
bug20240.phpt Remove zend_version() checks from tests 2017-01-30 22:50:25 +01:00
bug20242.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug21478.phpt Replace dirname(__FILE__) by __DIR__ in tests 2019-03-15 22:55:30 +01:00
bug21888.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug22725.phpt Remove zend_version() checks from tests 2017-01-30 22:50:25 +01:00
bug22836.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug23104.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug24436.phpt Remove zend_version() checks from tests 2017-01-30 22:50:25 +01:00
bug24635.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug24699.phpt Remove zend_version() checks from tests 2017-01-30 22:50:25 +01:00
bug24773.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug24884.phpt Remove zend_version() checks from tests 2017-01-30 22:50:25 +01:00
bug26010.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug26077.phpt
bug26166.phpt Define Stringable with __toString():string method 2020-03-02 15:25:32 +01:00
bug26229.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug26281.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug26696.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug26697.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug26698.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug26801.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug26802.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug27268.phpt
bug27304.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug27598.phpt
bug27669.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug27731.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug27798.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug28072.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug28377.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug28442.phpt Clean DONE tags from tests 2019-11-07 21:31:47 +01:00
bug28444.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug29015.phpt
bug29104.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug29210.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug29368_1.phpt Fixed bug #29368 (The destructor is called when an exception is thrown from the constructor). 2016-07-13 16:43:47 +03:00
bug29368_2.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug29368_3.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug29368.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug29505.phpt Clean DONE tags from tests 2019-11-07 21:31:47 +01:00
bug29674.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug29689.phpt Convert some notices to warnings 2019-10-02 10:34:08 +02:00
bug29883.phpt Convert some notices to warnings 2019-10-02 10:34:08 +02:00
bug29890.phpt Remove $errcontext argument to error handlers 2019-02-05 14:12:10 +01:00
bug29896.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
bug29944.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
bug30080.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug30140.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug30161.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug30162.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
bug30346.phpt Clean DONE tags from tests 2019-11-07 21:31:47 +01:00
bug30394.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug30407.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug30451.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug30519.phpt Allow throwing exception while loading parent class 2019-09-12 16:41:18 +02:00
bug30702.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug30707.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug30725.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug30791.phpt Allow exceptions in __toString() 2019-06-05 14:25:07 +02:00
bug30820.phpt
bug30828.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug30889.phpt
bug30922.phpt Allow throwing exception while loading parent class 2019-09-12 16:41:18 +02:00
bug30998.phpt Make error messages more consistent by fixing capitalization 2020-01-17 14:52:46 +01:00
bug31098.phpt Convert some notices to warnings 2019-10-02 10:34:08 +02:00
bug31102.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug31177-2.phpt
bug31177.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug31341.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug31525.phpt
bug31683.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug31720.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
bug32226.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug32252.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug32290.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug32296.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug32322.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug32427.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug32428.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug32429.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug32596.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
bug32660.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug32674.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug32799.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug32833.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug32993.phpt
bug33116.phpt Remove support for __autoload() 2019-01-30 14:00:16 +01:00
bug33171.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug33257.phpt
bug33277.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug33282.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug33318.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
bug33512.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug33558.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
bug33710.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug33732.phpt
bug33771.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug33802.phpt
bug33996.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug33999.phpt
bug34045.phpt
bug34062.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug34064.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug34065.phpt
bug34137.phpt
bug34199.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
bug34260.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug34310.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug34358.phpt
bug34467.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug34518.phpt
bug34617.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug34678.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug34786.phpt Don't silence fatal errors with @ 2019-02-11 16:17:55 +01:00
bug34873.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug34879.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
bug34893.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug35017.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug35106.phpt
bug35163_2.phpt var_dump(): Don't skip recursion detection on first level 2020-02-12 11:25:50 +01:00
bug35163_3.phpt
bug35163.phpt
bug35239.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug35393.phpt
bug35411.phpt
bug35470.phpt Remove superfluous semicolons 2017-06-26 00:23:25 +02:00
bug35509.phpt
bug35634.phpt
bug35655.phpt Add WHITESPACE_SENSITIVE run-tests section 2020-02-03 10:08:15 +01:00
bug36006.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug36037.phpt
bug36071.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
bug36214.phpt Remove superfluous SKIPIF sections in Zend tests 2018-02-03 16:16:49 +01:00
bug36268.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug36513.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug36568.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:44:14 +02:00
bug36759.phpt
bug37046.phpt
bug37138.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug37144.phpt
bug37212.phpt Clean DONE tags from tests 2019-11-07 21:31:47 +01:00
bug37251.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug37632.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug37667.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug37707.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug37715.phpt
bug37811.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug38146.phpt
bug38211.phpt
bug38220.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug38234.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug38287.phpt
bug38461.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug38469.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug38623.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug38624.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug38772.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug38779_1.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug38779.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug38808.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
bug39003.phpt Change argument error message format 2020-02-26 15:00:08 +01:00
bug39017.phpt
bug39018_2.phpt
bug39018.phpt Convert some notices to warnings 2019-10-02 10:34:08 +02:00
bug39036.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
bug39297.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug39304.phpt Convert some notices to warnings 2019-10-02 10:34:08 +02:00
bug39346.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug39438.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug39445.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug39449.phpt
bug39542.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug39602.phpt
bug39721.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug39775.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug39825.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug39944.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug39990.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug40236.inc Sync leading and final newlines in source code files 2018-10-14 12:56:38 +02:00
bug40236.phpt Merge branch 'PHP-7.4' 2019-03-15 23:36:47 +01:00
bug40261.phpt
bug40509.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug40621.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug40705.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug40757.phpt
bug40770.phpt
bug40809.phpt Remove some references to E_STRICT in tests 2018-02-03 18:17:12 +01:00
bug40815.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug40833.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug40899.phpt
bug41026.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug41117_1.phpt
bug41209.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
bug41351_2.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug41351_3.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug41351.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug41372.phpt
bug41401.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
bug41421.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug41633_1.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug41633_2.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug41633_3.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug41633_4.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug41640.phpt
bug41813.phpt Revert "Fetch for read in nested property assignments" 2020-03-18 14:54:43 +01:00
bug41919.phpt Revert "Fetch for read in nested property assignments" 2020-03-18 14:54:43 +01:00
bug41929.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug41961.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug42143.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
bug42211.phpt
bug42767.phpt
bug42772.phpt
bug42798.phpt Deprecate __autoload() 2017-02-03 18:52:57 +01:00
bug42802.phpt Change argument error message format 2020-02-26 15:00:08 +01:00
bug42817.phpt
bug42818.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
bug42819.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug42820.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug42859.phpt
bug42937.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug43027.phpt Use EXPECT instead of EXPECTF when possible 2018-02-20 21:53:48 +01:00
bug43053.phpt
bug43128.phpt
bug43175.phpt
bug43183.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
bug43200_2.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug43200.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug43201.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
bug43332_1.phpt Change argument error message format 2020-02-26 15:00:08 +01:00
bug43332_2.phpt
bug43343.phpt
bug43344_1.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug43344_2.phpt
bug43344_3.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug43344_4.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug43344_5.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug43344_6.phpt
bug43344_7.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug43344_8.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug43344_9.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug43344_10.phpt
bug43344_11.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug43344_12.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug43344_13.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug43426.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug43450.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug43483.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug43651.phpt
bug43703.phpt
bug43851.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug43918.phpt
bug44069.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug44141.phpt
bug44184.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug44414.phpt
bug44653.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug44660.phpt Convert some notices to warnings 2019-10-02 10:34:08 +02:00
bug44827.phpt
bug44830.phpt
bug44899_2.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug44899.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug44913.phpt
bug45147.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug45180.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug45186_2.phpt Change argument error message format 2020-02-26 15:00:08 +01:00
bug45186.phpt Change argument error message format 2020-02-26 15:00:08 +01:00
bug45742.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:46:15 +02:00
bug45744.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug45805.phpt Remove $errcontext argument to error handlers 2019-02-05 14:12:10 +01:00
bug45862.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
bug45877.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug45910_2.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug45910.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug46106.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug46196.phpt Clean DONE tags from tests 2019-11-07 21:31:47 +01:00
bug46238.phpt
bug46241.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug46246.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug46304.phpt Remove ability to declare userland case-insensitive constants 2019-01-30 09:19:02 +01:00
bug46308.phpt
bug46381.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug46409.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug46665_autoload.inc
bug46665.phpt Use EXPECT instead of EXPECTF when possible 2018-09-16 15:39:18 -03:00
bug46701.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug46811.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
bug46813.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug47054.phpt Remove static calls to non-static methods 2019-01-30 09:19:02 +01:00
bug47109.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
bug47165.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug47343.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug47353.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug47516.phpt
bug47572.phpt Remove bareword fallback for constants 2019-01-31 13:52:06 +01:00
bug47593.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug47596.phpt
bug47699.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug47704.phpt Revert "Fetch for read in nested property assignments" 2020-03-18 14:54:43 +01:00
bug47714.phpt Deprecate __autoload() 2017-02-03 18:52:57 +01:00
bug47771.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug47801.phpt
bug47836.phpt Convert "cannot add element" warning to exception 2019-09-27 13:00:07 +02:00
bug47880.phpt
bug48215_2.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug48215.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug48228.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug48248.phpt Fix missing access errors for guarded properties 2018-09-27 14:58:26 +02:00
bug48408.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug48409.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug48428.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug48533.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug48667_1.phpt Implement interfaces after all methods available 2020-03-04 10:29:21 +01:00
bug48667_2.phpt
bug48770_2.phpt Change argument error message format 2020-02-26 15:00:08 +01:00
bug48770_3.phpt Change argument error message format 2020-02-26 15:00:08 +01:00
bug48770.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug48899.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug48912.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug48930.phpt
bug49269.phpt
bug49472.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug49866.phpt
bug49893.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug49908.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug50005.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug50146.phpt
bug50174.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug50255.phpt
bug50383.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug50394.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug50810.phpt Fixed bug #78632 2019-10-04 12:41:49 +02:00
bug50816.phpt
bug51176.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug51394.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug51421.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug51791.phpt Make constant() error handling consistent with plain const lookup 2020-01-10 13:39:56 +01:00
bug51822.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug51827.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug52001.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
bug52041.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
bug52060.phpt
bug52193.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug52355.phpt
bug52361.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug52484_2.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug52484_3.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug52484.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug52508.phpt Replace dirname(__FILE__) by __DIR__ in tests 2019-03-15 22:55:30 +01:00
bug52614.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug52879.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug52939.phpt
bug52940.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug53305.phpt
bug53347.phpt
bug53432.phpt
bug53511.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug53629.phpt
bug53632.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug53727.phpt
bug53748.phpt Use EXPECT instead of EXPECTF when possible 2018-02-20 21:53:48 +01:00
bug53958.phpt
bug53971.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
bug54013.phpt
bug54039.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug54043.phpt Fixed bug #54043 2017-12-23 13:35:08 +01:00
bug54268.phpt
bug54305.phpt
bug54358.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug54367.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug54372.phpt
bug54547.phpt
bug54624.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug54804.inc
bug54804.phpt
bug54910.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug55007.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug55086.phpt
bug55135.phpt Fixed bug #63217 2018-07-02 16:41:59 +02:00
bug55156.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug55247.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug55305.phpt
bug55445.phpt Use EXPECT instead of EXPECTF when possible 2018-02-20 21:53:48 +01:00
bug55509.phpt Fix test case 2019-05-14 10:23:58 +02:00
bug55578.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug55705.phpt Implement \ArgumentCountError exception 2016-08-30 19:35:56 -07:00
bug55825.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug60099.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug60138.phpt
bug60139.phpt
bug60161.phpt Add test for bug #60161 2020-02-26 16:48:03 +01:00
bug60169.phpt
bug60350.phpt
bug60362.phpt
bug60444.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug60536_001.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug60536_002.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug60536_003.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug60536_004.phpt Fix #78880: Another bunch of spelling errors 2020-01-16 09:46:47 +01:00
bug60536_005.phpt Fix #78880: Another bunch of spelling errors 2020-01-16 09:46:47 +01:00
bug60569.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug60573_2.phpt Always generate fatal error for LSP failures 2019-05-07 13:45:28 +02:00
bug60573.phpt Always generate fatal error for LSP failures 2019-05-07 13:45:28 +02:00
bug60598.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug60611.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug60613.phpt
bug60738_variation.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
bug60738.phpt
bug60771.phpt
bug60825.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug60833.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug60909_1.phpt Make error messages more consistent by fixing capitalization 2020-01-17 14:52:46 +01:00
bug60909_2.phpt Allow exceptions in __toString() 2019-06-05 14:25:07 +02:00
bug60978.phpt Remove unnecessary CLI checks in tests 2019-01-31 00:21:32 -02:00
bug61011.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug61025.phpt
bug61087.phpt
bug61095.phpt Fix typo in tests 2019-10-10 15:57:57 +02:00
bug61165.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug61225.phpt Fix typo in tests 2019-10-10 15:57:57 +02:00
bug61273.phpt Change argument error message format 2020-02-26 15:00:08 +01:00
bug61362.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug61681.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug61761.phpt Use EXPECT instead of EXPECTF when possible 2018-02-20 21:53:48 +01:00
bug61767.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
bug61782.phpt
bug61970_1.phpt Fix lineno for more inheritance errors 2019-03-27 13:02:28 +01:00
bug61970_2.phpt Treat abstract ctors the same, regardless of origin 2019-03-27 18:09:09 +01:00
bug61970.phpt Fixed bug #61970: Allow a child class to restrict access to ctor 2017-05-01 14:15:57 +02:00
bug62069_2.phpt Require non-absolute trait method refs to be unambiguous 2020-03-10 16:01:13 +01:00
bug62069.phpt Require non-absolute trait method refs to be unambiguous 2020-03-10 16:01:13 +01:00
bug62097.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug62343.phpt
bug62358.phpt Make line numbers for inheritance errors more precise 2019-03-27 12:42:35 +01:00
bug62441.phpt Implement basic variance support 2019-05-24 09:30:37 +02:00
bug62609_2.phpt Fixed bug #62609: Allow implementing Traversable in abstract class 2020-03-06 11:12:43 +01:00
bug62609.phpt Fixed bug #62609: Allow implementing Traversable in abstract class 2020-03-06 11:12:43 +01:00
bug62653.phpt
bug62680.phpt
bug62763.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug62814.phpt Fix lineno for more inheritance errors 2019-03-27 13:02:28 +01:00
bug62892.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug62907.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug62956.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug62991.phpt
bug63055.phpt Use EXPECT instead of EXPECTF when possible 2018-02-20 21:53:48 +01:00
bug63111.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug63173.phpt
bug63206_1.phpt Fix #63206: Fully support error/exception_handler stacking, even with null or inside the handler 2020-02-25 12:43:42 +01:00
bug63206_2.phpt Fix #63206: Fully support error/exception_handler stacking, even with null or inside the handler 2020-02-25 12:43:42 +01:00
bug63206.phpt Fix #63206: Fully support error/exception_handler stacking, even with null or inside the handler 2020-02-25 12:43:42 +01:00
bug63217.phpt Fixed bug #63217 2018-07-02 16:41:59 +02:00
bug63219.phpt
bug63305.phpt Deprecate __autoload() 2017-02-03 18:52:57 +01:00
bug63462.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug63468.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug63635.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug63734.phpt More missing gc inis 2017-01-10 12:17:31 -05:00
bug63741.phpt Replace dirname(__FILE__) by __DIR__ in tests 2019-03-15 22:55:30 +01:00
bug63762.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
bug63816.phpt Add test for bug #63816 2020-03-06 11:16:47 +01:00
bug63882.phpt
bug63976.phpt
bug63982.phpt Use EXPECT instead of EXPECTF when possible 2018-02-20 21:53:48 +01:00
bug64135.phpt
bug64239_1.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug64239_2.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug64239_3.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug64239_4.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug64354.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug64417.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug64515.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug64555.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug64578.phpt Use EXPECT instead of EXPECTF when possible 2018-02-20 21:53:48 +01:00
bug64660.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
bug64677.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug64720.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug64821.1.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug64821.2.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug64821.3.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug64896.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug64960.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug64966.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug64979.phpt Fix CRLF line-endings in tests 2016-11-20 22:31:24 +01:00
bug64988.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug65051.phpt
bug65108.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug65254.phpt Deprecate __autoload() 2017-02-03 18:52:57 +01:00
bug65291.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug65322.phpt Always generate fatal error for LSP failures 2019-05-07 13:45:28 +02:00
bug65372.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug65419.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
bug65579.phpt Store aliased name of trait method 2020-03-03 11:55:48 +01:00
bug65784.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug65911.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug65969.phpt
bug66015.phpt Clean DONE tags from tests 2019-11-07 21:31:47 +01:00
bug66218.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug66252.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug66286.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug66608.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug66609.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug66660.phpt
bug66811.phpt Fix some misspellings 2018-02-06 16:59:00 +01:00
bug67111.phpt
bug67169.phpt
bug67314.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
bug67368.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug67633.phpt
bug67856.phpt
bug67874.phpt
bug67922.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug67938.phpt Check type is set when verifying variadic args 2019-10-25 10:27:45 +02:00
bug67985.phpt
bug68118.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug68148.phpt
bug68162.phpt
bug68163.phpt
bug68191.phpt
bug68215.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug68262.phpt
bug68370.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug68412.phpt
bug68446.phpt Change argument error message format 2020-02-26 15:00:08 +01:00
bug68475.phpt
bug68652.phpt Fixed bug #74053 (Corrupted class entries on shutdown when a destructor spawns another object). (jim at commercebyte dot com) 2017-02-10 10:31:43 +03:00
bug68775.phpt
bug68797.phpt Clean DONE tags from tests 2019-11-07 21:31:47 +01:00
bug68887.phpt
bug68896.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug69017.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug69025.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug69084.phpt Add test for bug #69084 2020-03-03 12:10:54 +01:00
bug69092.2.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug69092.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug69124.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug69167.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug69174.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug69201.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug69212.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug69221_2.phpt
bug69221.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug69315.phpt Reset required_num_args for disabled functions 2020-02-12 12:01:22 +01:00
bug69376_2.phpt
bug69376.phpt
bug69388_2.phpt Remove $errcontext argument to error handlers 2019-02-05 14:12:10 +01:00
bug69388.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug69420.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug69427.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug69446_2.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug69446.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug69467.phpt
bug69532.phpt
bug69534.phpt More missing gc inis 2017-01-10 12:17:31 -05:00
bug69537.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
bug69551.phpt
bug69568.phpt
bug69599.phpt
bug69640.phpt
bug69676_2.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug69676_3.phpt Fix bug #69676 2017-03-15 19:49:02 +01:00
bug69676.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug69732.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug69740.phpt
bug69754.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug69755.phpt Remove bareword fallback for constants 2019-01-31 13:52:06 +01:00
bug69756.phpt
bug69758.phpt
bug69761.phpt
bug69767.phpt Canonicalize typed prop/param default value errors 2019-09-23 16:20:26 +02:00
bug69788.phpt Merge branch 'PHP-7.4' 2019-02-28 09:11:50 +01:00
bug69802_2.phpt
bug69805.phpt
bug69825.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
bug69832.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug69871.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug69889.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
bug69891.phpt
bug69892.phpt Fix some misspellings 2018-08-12 16:15:45 +02:00
bug69893.phpt
bug69905.phpt
bug69955.phpt Use EXPECT instead of EXPECTF when possible 2018-02-20 21:53:48 +01:00
bug69957.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug69989_1.phpt
bug69989_2.phpt
bug69989_3.phpt
bug69996.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug70012.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug70083.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug70089.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug70117.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug70121.phpt
bug70124.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
bug70156.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug70164.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug70173.phpt
bug70179.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug70182.phpt
bug70183.phpt
bug70187_2.phpt
bug70187.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug70215.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug70223.phpt
bug70240.phpt
bug70241.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug70253.phpt Fix test after unserialize change 2019-09-16 11:59:43 +02:00
bug70258.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug70262.phpt
bug70288.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug70293.phpt
bug70321.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug70332.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug70397.phpt
bug70398.phpt
bug70430.phpt
bug70478.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug70547.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug70630.phpt
bug70662.phpt
bug70681.phpt Forbid unbinding $this from methods 2019-01-30 09:19:02 +01:00
bug70685.phpt
bug70689.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug70748.phpt Revert "Rename *.l files to *.re" 2019-05-20 06:06:38 +02:00
bug70782.phpt
bug70785.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug70804.phpt
bug70805_1.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug70805_2.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug70805.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug70873.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug70895.phpt Change argument error message format 2020-02-26 15:00:08 +01:00
bug70898.phpt Change argument error message format 2020-02-26 15:00:08 +01:00
bug70912.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug70914.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:46:15 +02:00
bug70918.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug70944.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug70957.phpt Always generate fatal error for LSP failures 2019-05-07 13:45:28 +02:00
bug70958.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug70967.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug70987.phpt Use EXPECT instead of EXPECTF when possible 2018-02-20 21:53:48 +01:00
bug70997.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug71030.phpt Fixed bug #71030 2019-05-09 14:31:39 +02:00
bug71067.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug71086.phpt Fix handling of overflowing invalid octal in tokenizer 2019-10-14 16:36:27 +02:00
bug71154.phpt
bug71163.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug71196.phpt
bug71221.phpt Add missing ZPP checks 2019-11-01 15:26:52 +01:00
bug71248.phpt
bug71266.phpt
bug71275.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug71300.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug71336.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug71359.phpt
bug71414.phpt
bug71428.1.phpt Always generate fatal error for LSP failures 2019-05-07 13:45:28 +02:00
bug71428.2.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug71428.3.phpt Always generate fatal error for LSP failures 2019-05-07 13:45:28 +02:00
bug71470.phpt
bug71474.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug71529.phpt
bug71539_1.phpt Fixed bug #71539 (Memory error on $arr[$a] =& $arr[$b] if RHS rehashes) 2016-07-07 00:59:44 +03:00
bug71539_2.phpt Fixed bug #71539 (Memory error on $arr[$a] =& $arr[$b] if RHS rehashes) 2016-07-07 00:59:44 +03:00
bug71539_3.phpt Fixed bug #71539 (Memory error on $arr[$a] =& $arr[$b] if RHS rehashes) 2016-07-07 00:59:44 +03:00
bug71539_4.phpt Fixed bug #71539 (Memory error on $arr[$a] =& $arr[$b] if RHS rehashes) 2016-07-07 00:59:44 +03:00
bug71539_5.phpt Throw Error when writing property of non-object 2019-09-27 10:11:47 +02:00
bug71539_6.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
bug71539.phpt Fixed bug #71539 (Memory error on $arr[$a] =& $arr[$b] if RHS rehashes) 2016-07-07 00:59:44 +03:00
bug71572.phpt Add warning and convert to exception in string offset assignment: 2020-01-07 21:54:42 +01:00
bug71622.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug71695.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug71724.phpt
bug71731.phpt
bug71737.phpt
bug71756.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug71818.phpt Fixed bug #72530 2019-08-13 14:53:53 +02:00
bug71841.phpt Convert "cannot add element" warning to exception 2019-09-27 13:00:07 +02:00
bug71859.phpt
bug71871_2.phpt
bug71871.phpt
bug71914.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug71922.phpt
bug71930.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug71980.phpt
bug72038.phpt Make ASSIGN, ASSIGN_OP, INC and DEC opcodes to return IS_TMP_VAR instead of IS_VAR. 2020-02-07 13:36:52 +03:00
bug72057.phpt Remove $errcontext argument to error handlers 2019-02-05 14:12:10 +01:00
bug72101.phpt Make type error messages more consistent 2020-02-17 14:22:17 +01:00
bug72107.phpt Promote warning to error in zend_forbid_dynamic_call() 2019-08-23 20:01:51 +02:00
bug72119.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
bug72162.phpt Allow exceptions in __toString() 2019-06-05 14:25:07 +02:00
bug72177_2.phpt
bug72177.phpt
bug72188.phpt
bug72215_1.phpt Fixed bug #72347 (VERIFY_RETURN type casts visible in finally) 2016-07-13 15:08:28 +03:00
bug72215_2.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug72215_3.phpt Unified behavior of modification of returned by reference value in finnally code. 2016-07-13 20:35:53 +03:00
bug72215.phpt Fixed bug #72347 (VERIFY_RETURN type casts visible in finally) 2016-07-13 15:08:28 +03:00
bug72216.phpt Fixed bug #72347 (VERIFY_RETURN type casts visible in finally) 2016-07-13 15:08:28 +03:00
bug72335.phpt
bug72347.phpt Fixed bug #72347 (VERIFY_RETURN type casts visible in finally) 2016-07-13 15:08:28 +03:00
bug72373.phpt
bug72395.phpt
bug72441.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug72496.phpt
bug72508.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug72530.phpt Fixed bug #72530 2019-08-13 14:53:53 +02:00
bug72543_1.phpt Fixed bug #72543 (Different references behavior comparing to PHP 5) 2016-07-06 20:46:43 +03:00
bug72543_2.phpt Fixed bug #72543 (Different references behavior comparing to PHP 5) 2016-07-06 20:46:43 +03:00
bug72543_3.phpt Fixed bug #72543 (Different references behavior comparing to PHP 5) 2016-07-06 20:46:43 +03:00
bug72543_4.phpt Fixed bug #72543 (Different references behavior comparing to PHP 5) 2016-07-06 20:46:43 +03:00
bug72543_5.phpt Use COPY_DEREF instead of COPY_UNREF 2018-06-25 11:23:59 +02:00
bug72543.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:46:15 +02:00
bug72581.phpt Fixed bug #72581 (previous property undefined in Exception after deserialization) 2016-07-12 11:51:20 +08:00
bug72594.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug72598_2.phpt Change argument error message format 2020-02-26 15:00:08 +01:00
bug72598.phpt Change argument error message format 2020-02-26 15:00:08 +01:00
bug72767.phpt Fix bug #72767 2016-08-05 19:55:10 +02:00
bug72813.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug72854.phpt Fix bug #72854 2016-08-16 21:05:30 +02:00
bug72918.phpt Clean DONE tags from tests 2019-11-07 21:31:47 +01:00
bug72943.phpt Fixed bug #72943 (assign_dim on string doesn't reset hval) 2016-08-26 18:30:08 +08:00
bug72944.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
bug73156.phpt Fixed bug #73350 (Exception::__toString() cause circular references) 2016-10-22 14:50:21 +08:00
bug73288.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug73337.phpt Add _IS_NUMBER as cast_object() target type 2017-12-26 12:39:06 +01:00
bug73338.phpt Adjust tests for zpp TypeError change 2019-03-11 11:32:20 +01:00
bug73350.phpt Fixed bug #73350 (Exception::__toString() cause circular references) 2016-10-22 14:50:21 +08:00
bug73663_2.phpt Make ASSIGN, ASSIGN_OP, INC and DEC opcodes to return IS_TMP_VAR instead of IS_VAR. 2020-02-07 13:36:52 +03:00
bug73663.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug73753.phpt Use EXPECT instead of EXPECTF when possible 2018-02-20 21:53:48 +01:00
bug73792.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug73816.phpt Add test for bug #73816 2020-01-03 11:26:31 +01:00
bug73900.phpt Fixed bug #73900 2017-06-25 19:48:17 +02:00
bug73916.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug73954.phpt Change argument error message format 2020-02-26 15:00:08 +01:00
bug73960.phpt Fixed bug #73960 2017-03-10 18:20:32 +01:00
bug73987_1.phpt Revert "Inheritance checks should not ignore parents if these implement an interface" 2017-02-01 18:34:14 +00:00
bug73987_2.phpt Revert "Added tests demonstrating the same effect with abstracts" 2017-02-01 18:33:47 +00:00
bug73987_3.phpt Revert "Added tests demonstrating the same effect with abstracts" 2017-02-01 18:33:47 +00:00
bug73987.phpt Revert "Inheritance checks should not ignore parents if these implement an interface" 2017-02-01 18:34:14 +00:00
bug73989.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug73998.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
bug74053.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug74084.phpt Throw "Unsupported operand types" error when using ** on arrays 2019-10-29 13:05:02 +01:00
bug74093.phpt make test slower again 2017-02-28 11:36:24 +01:00
bug74164.phpt Change argument error message format 2020-02-26 15:00:08 +01:00
bug74269.phpt Fixed bug #74269: Strict comparison of initial trait property values 2017-05-01 12:59:27 +02:00
bug74340.phpt Convert some notices to warnings 2019-10-02 10:34:08 +02:00
bug74546.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug74603.ini Fix bug #74603 - use correct buffer size 2017-07-04 19:35:56 -07:00
bug74603.phpt Make more tests run on 64bit plataforms 2018-07-30 09:43:09 -03:00
bug74657.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug74810.phpt Fixed bug #74810 2017-06-25 16:00:24 +02:00
bug74836.phpt Fixed bug #74836 (isset on zero-prefixed numeric indexes in array broken) 2017-07-04 07:23:46 +03:00
bug74840.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug74862_2.phpt Fixed #74862: Unable to clone instance when private __clone defined 2017-11-15 23:00:26 +01:00
bug74862.phpt Fixed #74862: Unable to clone instance when private __clone defined 2017-11-15 23:00:26 +01:00
bug74947.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug75079_2.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
bug75079.phpt Fixed bug #75079 2018-01-15 12:15:40 +01:00
bug75218.phpt Fixed bug #75218 2018-06-16 12:41:03 +02:00
bug75241.phpt Throw Error when writing property of non-object 2019-09-27 10:11:47 +02:00
bug75252.phpt Fixed bug #75252 2017-09-24 08:53:27 +02:00
bug75290.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
bug75420.1.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug75420.2.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug75420.3.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug75420.4.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug75420.5.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug75420.6.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug75420.7.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug75420.8.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug75420.9.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug75420.10.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug75420.11.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug75420.12.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug75420.13.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug75420.14.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug75420.15.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug75420.16.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug75420.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug75426.phpt Partial fix for bug #75426 2019-01-02 11:32:48 +01:00
bug75573.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug75786.phpt Fixed bug #75786 2018-01-09 20:20:31 +01:00
bug75921.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
bug76025.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug76047.phpt Fix bug #76047 2020-01-31 10:26:40 +01:00
bug76383.phpt Fixed bug #76383 (array_map on $GLOBALS returns IS_INDIRECT) 2018-05-28 00:48:35 +02:00
bug76430.phpt Fixed bug #76430 2019-02-12 17:36:07 +01:00
bug76439_2.phpt Fixed bug #76439 2018-06-27 14:15:56 +02:00
bug76439.phpt Fixed bug #76439 2018-06-27 14:15:56 +02:00
bug76451_2.inc Avoid early-binding on unresolved types 2019-05-24 09:30:13 +02:00
bug76451_2.phpt Avoid early-binding on unresolved types 2019-05-24 09:30:13 +02:00
bug76451.inc Avoid early-binding on unresolved types 2019-05-24 09:30:13 +02:00
bug76451.phpt Avoid early-binding on unresolved types 2019-05-24 09:30:13 +02:00
bug76502.phpt Fixed bug #76502 2018-06-24 22:26:45 +02:00
bug76534.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug76667.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
bug76752.phpt Fixed bug #76752 (Crash in ZEND_COALESCE_SPEC_TMP_HANDLER - assertion in _get_zval_ptr_tmp failed). 2018-08-17 12:19:31 +08:00
bug76754.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug76800.phpt Fixed bug #76800 (foreach inconsistent if array modified during loop) 2018-09-14 10:28:31 +03:00
bug76846.phpt Fix test for release builds 2018-09-28 13:40:58 +02:00
bug76860_2.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug76860.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug76869.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug76901.phpt Fixed bug #76901 2018-09-19 09:37:04 +02:00
bug76946.phpt Fixed bug #76946 2018-09-28 19:15:19 +02:00
bug76965.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug77291.phpt Clean DONE tags from tests 2019-11-07 21:31:47 +01:00
bug77339.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug77345_gc_1.phpt Fixed bug #77345 (Stack Overflow caused by circular reference in garbage collection) 2019-03-07 13:33:19 +03:00
bug77345_gc_2.phpt Fixed bug #77345 (Stack Overflow caused by circular reference in garbage collection) 2019-03-07 13:33:19 +03:00
bug77376.phpt Fixed bug #77376 ("undefined function" message no longer includes namespace) 2019-01-02 15:32:17 +08:00
bug77494.phpt Convert some notices to warnings 2019-10-02 10:34:08 +02:00
bug77530.phpt Fixed bug #77530: PHP crashes when parsing "(2)::class" 2019-01-28 09:22:18 +01:00
bug77589.phpt Fixed bug #79244 (php crashes during parsing INI file). (Laruence) 2020-02-10 13:01:51 +08:00
bug77613.phpt Fixed bug #77613 (method visibility change) (reverted ZEND_ACC_CTOR and ZEND_ACC_DTOR flags removal) 2019-02-14 13:12:50 +03:00
bug77652.inc Fixed bug #77652 2019-02-22 10:11:54 +01:00
bug77652.phpt Fixed bug #77652 2019-02-22 10:11:54 +01:00
bug77660.phpt Fixed bug #77660 (Segmentation fault on break 2147483648) 2019-02-25 15:00:14 +08:00
bug77738.phpt Fix failing test 2019-03-14 20:41:19 +01:00
bug77877.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug77922.phpt Fixed bug #77922 2019-08-17 10:58:54 +02:00
bug77993.phpt Fix #77993: Wrong parse error for invalid hex literal on Windows 2019-05-13 11:04:56 +02:00
bug78010.phpt Fixed bug #78010 2019-07-15 12:00:30 +02:00
bug78151.phpt test for bug #78151 2019-06-12 22:39:00 +02:00
bug78154.phpt Make ASSIGN, ASSIGN_OP, INC and DEC opcodes to return IS_TMP_VAR instead of IS_VAR. 2020-02-07 13:36:52 +03:00
bug78182.phpt Throw Error when writing property of non-object 2019-09-27 10:11:47 +02:00
bug78239.phpt Fix and undeprecate ReflectionType::__toString() 2019-10-22 11:26:02 +02:00
bug78271.phpt Convert short tag to standard tag in Zend test file 2019-07-16 15:27:50 +02:00
bug78335_2.phpt Fix static prop cleanup for dl'ed internal classes 2019-10-21 12:17:38 +02:00
bug78335.phpt Fixed bug #78335 2019-08-28 12:32:06 +02:00
bug78340.phpt Fixed bug #78340 2019-07-29 10:07:12 +02:00
bug78344.phpt Fixed bug #78344 2019-07-29 11:12:00 +02:00
bug78356.phpt Add test for bug #78356 2019-08-01 10:10:28 +02:00
bug78363.phpt Add test for bug #78363 2019-08-02 10:37:44 +02:00
bug78379_2.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug78379.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug78396.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug78406.phpt Fixed bug #78406 2019-08-13 10:22:32 +02:00
bug78454_1.phpt Fix #78454: Consecutive numeric separators cause OOM error 2019-08-25 22:46:18 +02:00
bug78454_2.phpt Fix #78454: Consecutive numeric separators cause OOM error 2019-08-25 22:46:18 +02:00
bug78502.phpt Fixed bug #78502 2019-09-06 11:33:28 +02:00
bug78531.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
bug78589.phpt Fixed bug #78589 2019-09-24 12:17:21 +02:00
bug78644.phpt Fixed bug #78644 2019-10-08 14:32:49 +02:00
bug78658.phpt Fixed bug #78658 2019-10-09 17:00:27 +02:00
bug78689.phpt Fixed bug #78689 2019-10-29 15:06:16 +01:00
bug78752.phpt Fix bug #78752 2019-10-28 10:27:32 +01:00
bug78776.phpt Fixed bug #78776 2019-12-18 15:55:45 +01:00
bug78787.phpt Fixed bug #78787 2019-11-06 12:52:34 +01:00
bug78810.phpt Fixed bug #78810 2019-11-15 12:06:17 +01:00
bug78868.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug78898.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug78921.phpt Fixed bug #78921 2019-12-13 16:37:20 +01:00
bug78926.phpt Fixed bug #78926: Handle class table reallocation on failed link 2019-12-09 09:15:27 +01:00
bug78973.phpt Merge branch 'PHP-7.3' into PHP-7.4 2020-01-31 10:29:45 +01:00
bug78999.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug79022.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug79155.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
bug79364.phpt Fix #79364: When copy empty array, next key is unspecified 2020-03-11 08:54:05 +01:00
bug_debug_backtrace.phpt Clean DONE tags from tests 2019-11-07 21:31:47 +01:00
builtin_in_write_context_error1.phpt
builtin_in_write_context_error2.phpt
bw_or_assign_with_ref.phpt
call_static_002.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
call_static_003.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
call_static_004.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
call_static_006.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
call_static_007.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
call_static.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
call_to_abstract_method_args.phpt Improve exception handling for abstract/deprecated calls 2019-09-04 15:19:21 +02:00
call_to_deprecated_function_args.phpt Remove ezmlm_hash() function 2019-12-05 13:15:54 +01:00
call_user_func_001.phpt Change argument error message format 2020-02-26 15:00:08 +01:00
call_user_func_002.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
call_user_func_003.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
call_user_func_005.phpt Deprecate required param after optional 2020-02-18 14:35:58 +01:00
call_user_func_006.phpt Change argument error message format 2020-02-26 15:00:08 +01:00
call_user_func_007.phpt Change argument error message format 2020-02-26 15:00:08 +01:00
call_user_func_008.phpt Change argument error message format 2020-02-26 15:00:08 +01:00
call_user_func_009.phpt Change argument error message format 2020-02-26 15:00:08 +01:00
call_user_func_array_invalid_type.phpt Change argument error message format 2020-02-26 15:00:08 +01:00
call_user_func_array_prefer_ref.phpt
call_user_func_closure_from_static_method.phpt
call_with_refs.phpt Allow exceptions in __toString() 2019-06-05 14:25:07 +02:00
cast_to_array.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
cast_to_bool.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
cast_to_double.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
cast_to_int.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
cast_to_object.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
cast_to_string.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
catch_static.phpt Make class name references use the class_name production 2020-01-13 11:51:09 +01:00
catch.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
class_alias_001.phpt
class_alias_002.phpt
class_alias_004.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
class_alias_005.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
class_alias_006.phpt
class_alias_007.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
class_alias_008.phpt
class_alias_009.phpt
class_alias_010.phpt
class_alias_011.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
class_alias_012.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
class_alias_013.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
class_alias_014.phpt
class_alias_016.phpt
class_alias_017.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
class_alias_018.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
class_alias_019.phpt
class_alias_020.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
class_alias_021.phpt
class_constant_to_reference_cached.phpt
class_constants_001.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
class_constants_002.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
class_constants_003.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
class_constants_004.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
class_constants_005.phpt Fixed string interning during constants substitution 2017-11-01 10:56:37 +03:00
class_exists_001.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
class_exists_002.phpt Adjust tests for zpp TypeError change 2019-03-11 11:32:20 +01:00
class_exists_003.phpt
class_name_as_scalar_error_001.phpt
class_name_as_scalar_error_002.phpt Promote "Cannot use parent" to fatal error 2019-10-15 11:46:48 +02:00
class_name_as_scalar_error_003.phpt
class_name_as_scalar_error_004.phpt Support parent::class inside constexpr contexts 2019-01-04 11:46:57 +01:00
class_name_as_scalar_error_005.phpt
class_name_as_scalar_error_006.phpt
class_name_as_scalar_error_007.phpt Don't replace self::class with __CLASS__ during const eval 2019-01-04 11:16:59 +01:00
class_name_as_scalar.phpt Use EXPECT instead of EXPECTF when possible 2018-02-20 21:53:48 +01:00
class_on_constant_evaluated_expression.phpt Add support for $obj::class 2020-02-11 12:16:30 +01:00
class_on_expression_in_constant_expression.phpt Add support for $obj::class 2020-02-11 12:16:30 +01:00
class_on_object.phpt Add support for $obj::class 2020-02-11 12:16:30 +01:00
class_properties_const.phpt Convert some notices to warnings 2019-10-02 10:34:08 +02:00
class_properties_dynamic.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
class_properties_static.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
class_uses_static.phpt Use helper in one more place 2020-01-13 12:44:16 +01:00
clone_001.phpt
clone_002.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
clone_003.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
clone_004.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
closure_001.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
closure_002.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
closure_003.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
closure_004.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
closure_005.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
closure_006.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
closure_007.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
closure_008.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
closure_009.phpt
closure_010.phpt
closure_011.phpt
closure_012.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
closure_013.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
closure_014.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
closure_015.phpt Allow exceptions in __toString() 2019-06-05 14:25:07 +02:00
closure_016.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
closure_017.phpt
closure_018.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
closure_019.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
closure_020.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
closure_021.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
closure_022.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
closure_023.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
closure_024.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
closure_026.phpt var_dump(): Don't skip recursion detection on first level 2020-02-12 11:25:50 +01:00
closure_027.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
closure_028.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
closure_029.phpt
closure_030.phpt
closure_031.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
closure_032.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
closure_033.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
closure_034.phpt Clean DONE tags from tests 2019-11-07 21:31:47 +01:00
closure_035.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
closure_036.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
closure_037.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
closure_038.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
closure_039.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
closure_040.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
closure_041.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
closure_042.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:31:31 +02:00
closure_043.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
closure_044.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
closure_045.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
closure_046.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
closure_047.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
closure_048.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
closure_049.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
closure_050.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
closure_051.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
closure_052.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
closure_053.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
closure_054.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
closure_055.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
closure_056.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
closure_057.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
closure_058.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
closure_059.phpt Change argument error message format 2020-02-26 15:00:08 +01:00
closure_060.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
closure_061.phpt Forbid unbinding $this from methods 2019-01-30 09:19:02 +01:00
closure_062.phpt Remove ability to unbind $this of closures if used 2019-10-28 13:24:07 +01:00
closure_bug66622.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
closure_call_leak_with_exception.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
closure_call.phpt
closure_extra_args.phpt Fix use-after-free of immediately invoked closure with extra args 2019-08-29 12:32:03 +02:00
closure_invoke_case_insensitive.phpt
closure_use_auto_global.phpt
closure_use_parameter_name.phpt
closure_use_variable_twice.phpt
closure_write_prop.phpt Fix use-after-free when trying to write to closure property 2019-12-18 10:24:02 +01:00
compare_001_64bit.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
compare_001.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
compare_002_64bit.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
compare_002.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
compare_003_64bit.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
compare_003.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
compare_004_64bit.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
compare_004.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
compare_005_64bit.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
compare_005.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
compare_006_64bit.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
compare_006.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
compound_assign_failure.phpt Refactor operator implementations 2020-03-31 20:49:39 +02:00
compound_assign_with_numeric_strings.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
concat_001.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
concat_002.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
concat_003.phpt Set up asan+ubsan scheduled build on azure 2019-06-28 15:00:54 +02:00
const_array_with_resource_key.phpt Fix consistency issues with array accesses warnings/exceptions 2019-11-06 12:56:47 +01:00
const_deprecation.phpt Add support for deprecating constants 2020-01-17 10:05:06 +01:00
const_dereference_001.phpt
const_dereference_002.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
const_dereference_003.phpt
const_eval_and.phpt Fix constant evaluation of && and || 2019-12-06 11:07:57 +01:00
constant_arrays.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
constant_expressions_arrays.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
constant_expressions_classes.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
constant_expressions_coalesce_empty_dim.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
constant_expressions_coalesce.phpt Deprecate alternative array access syntax 2019-07-19 10:06:10 +02:00
constant_expressions_dynamic_class_name_error.phpt
constant_expressions_dynamic.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
constant_expressions_exceptions_001.phpt
constant_expressions_exceptions_002.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
constant_expressions_exceptions.inc
constant_expressions_invalid_offset_type_error.phpt Convert "Illegal offset type" warnings to exceptions 2019-09-27 13:00:07 +02:00
constant_expressions_self_referencing_array.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
constant_expressions_static_class_name_error.phpt
constant_expressions.phpt
constants_001.phpt
constants_002.phpt Remove bareword fallback for constants 2019-01-31 13:52:06 +01:00
constants_003.phpt
constants_004.phpt
constants_005.phpt Remove bareword fallback for constants 2019-01-31 13:52:06 +01:00
constants_006.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
constants_007.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
constants_008.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
constants_009.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
constructor_abstract_grantparent.phpt Treat abstract ctors the same, regardless of origin 2019-03-27 18:09:09 +01:00
constructor_args.phpt
continue_targeting_switch_warning.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
custom_assert_forbidden.phpt Remove support for custom assert() function 2019-01-29 11:10:47 +01:00
debug_backtrace_limit.phpt
debug_backtrace_options.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
debug_backtrace_with_include_and_this.phpt Make error messages more consistent by fixing capitalization 2020-01-17 14:52:46 +01:00
debug_info-error-0.0.phpt
debug_info-error-0.phpt
debug_info-error-1.0.phpt
debug_info-error-1.phpt
debug_info-error-empty_str.phpt
debug_info-error-false.phpt
debug_info-error-object.phpt
debug_info-error-resource.phpt Fix #73436: Setting allow_url_fopen to Off makes several tests fail 2016-11-01 20:13:53 +01:00
debug_info-error-str.phpt
debug_info-error-true.phpt
debug_info.phpt
debug_print_backtrace_limit.phpt
declare_001.phpt
declare_002.phpt
declare_003.phpt
declare_004.phpt
declare_005.phpt Use EXPECT instead of EXPECTF when possible 2018-02-20 21:53:48 +01:00
declare_006.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
declare_already_in_use.phpt Improve "already declared" error message 2019-09-11 17:04:13 +02:00
decrement_001_64bit.phpt Use serialize_precision for var_dump() 2020-02-25 09:51:32 +01:00
decrement_001.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
defined_fn_no_ns_fallback.phpt Fix flag value clash affecting defined() function 2019-04-22 12:01:04 +02:00
dereference_001.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
dereference_002.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
dereference_003.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
dereference_004.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
dereference_005.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
dereference_006.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
dereference_007.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
dereference_008.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
dereference_009.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
dereference_010.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
dereference_011.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
dereference_012.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
dereference_013.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
dereference_014.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
div_001.phpt Use serialize_precision for var_dump() 2020-02-25 09:51:32 +01:00
div_002.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
double_array_cast.phpt
double_to_string_64bit.phpt Use EXPECT instead of EXPECTF when possible 2018-02-20 21:53:48 +01:00
double_to_string.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
dtor_scope.phpt Remove zend_version() checks from tests 2017-01-30 22:50:25 +01:00
duplicate_label_error.phpt
dval_to_lval_32.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
dval_to_lval_64.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
dynamic_call_002.phpt Refer to method rather than function name in error message 2020-01-08 14:26:27 +01:00
dynamic_call_003.phpt Refer to method rather than function name in error message 2020-01-08 14:26:27 +01:00
dynamic_call_004.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
dynamic_call_005.phpt Promote warning to error in zend_forbid_dynamic_call() 2019-08-23 20:01:51 +02:00
dynamic_call_006.phpt Promote warning to error in zend_forbid_dynamic_call() 2019-08-23 20:01:51 +02:00
dynamic_call_007.phpt Promote warning to error in zend_forbid_dynamic_call() 2019-08-23 20:01:51 +02:00
dynamic_call_008.phpt Promote warning to error in zend_forbid_dynamic_call() 2019-08-23 20:01:51 +02:00
dynamic_call_freeing.phpt Fix #49555: Improve "function must be a string" error message 2020-01-08 14:32:11 +01:00
dynamic_call_to_ref_returning_function.phpt Unwrap reference returns in cufa etc 2016-09-30 22:10:01 +02:00
dynamic_fully_qualified_call.phpt
dynamic_prop_name_leak.phpt Fix leak of dynamic property name in address helper 2019-12-17 16:59:35 +01:00
empty_str_offset.phpt Use EXPECT instead of EXPECTF when possible 2018-09-16 15:39:18 -03:00
empty_with_expr.phpt
entry_block_with_predecessors.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
errmsg_001.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
errmsg_002.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
errmsg_003.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
errmsg_004.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
errmsg_005.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
errmsg_006.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
errmsg_007.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
errmsg_008.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
errmsg_009.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
errmsg_010.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
errmsg_011.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
errmsg_013.phpt Make type error messages more consistent 2020-02-17 14:22:17 +01:00
errmsg_015.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
errmsg_016.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
errmsg_017.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
errmsg_018.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
errmsg_019.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
errmsg_020.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
errmsg_021.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
errmsg_022.phpt Make ASSIGN, ASSIGN_OP, INC and DEC opcodes to return IS_TMP_VAR instead of IS_VAR. 2020-02-07 13:36:52 +03:00
errmsg_023.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
errmsg_024.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
errmsg_025.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
errmsg_026.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
errmsg_027.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
errmsg_028.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
errmsg_029.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
errmsg_030.phpt Make class name references use the class_name production 2020-01-13 11:51:09 +01:00
errmsg_031.phpt Make class name references use the class_name production 2020-01-13 11:51:09 +01:00
errmsg_032.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
errmsg_033.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
errmsg_034.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
errmsg_035.phpt Make class name references use the class_name production 2020-01-13 11:51:09 +01:00
errmsg_036.phpt Make class name references use the class_name production 2020-01-13 11:51:09 +01:00
errmsg_037.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
errmsg_038.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
errmsg_039.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
errmsg_040.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
errmsg_042.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
errmsg_044.phpt
errmsg_045.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
error_reporting01.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
error_reporting02.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
error_reporting03.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
error_reporting04.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
error_reporting05.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
error_reporting06.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
error_reporting07.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
error_reporting08.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
error_reporting09.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
error_reporting10.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
ErrorException_getSeverity.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
eval_parse_error_with_doc_comment.phpt
exception_001.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
exception_002.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
exception_003.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
exception_004.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
exception_005.phpt
exception_006.phpt
exception_007.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
exception_008.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
exception_009.phpt Allow exceptions in __toString() 2019-06-05 14:25:07 +02:00
exception_011.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
exception_013.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
exception_014.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
exception_015.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
exception_016.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
exception_017.phpt Change argument error message format 2020-02-26 15:00:08 +01:00
exception_018.phpt
exception_019.phpt
exception_020.phpt
exception_021.phpt
exception_022.phpt
exception_023.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
exception_before_fatal.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
exception_during_include_stat.phpt Properly propagate url_stat exceptions during include 2019-12-30 22:56:42 +01:00
exception_during_property_assign_op.phpt
exception_from_toString.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
exception_getters_with_ref_props.phpt Fix assertion in Exception::getMessage() if $message is a ref 2019-02-25 13:00:16 +01:00
exception_handler_001.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
exception_handler_002.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
exception_handler_003.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
exception_handler_004.phpt Promote some warnings to Errors in Zend basic functions 2020-03-31 16:32:58 +02:00
exception_handler_005.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
exception_handler_006.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
exception_ignore_args.phpt simple ignore arguments in exceptions implementation 2019-07-02 13:18:39 +02:00
exception_in_nested_rope.phpt
exception_in_rope_end.phpt
exception_with_by_ref_message.phpt
fe_fetch_dtor_exception.phpt Fix FE_FETCH_* exception check 2017-06-25 16:45:17 +02:00
fe_fetch_op2_live_range.phpt Fix live range calculation for FE_FETCH 2020-01-30 14:23:46 +01:00
flexible-heredoc-complex-test1.phpt Implement flexible heredoc/nowdoc syntax 2018-04-13 21:35:37 +02:00
flexible-heredoc-complex-test2.phpt Implement flexible heredoc/nowdoc syntax 2018-04-13 21:35:37 +02:00
flexible-heredoc-complex-test3.phpt Implement flexible heredoc/nowdoc syntax 2018-04-13 21:35:37 +02:00
flexible-heredoc-complex-test4.phpt Implement flexible heredoc/nowdoc syntax 2018-04-13 21:35:37 +02:00
flexible-heredoc-error1.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
flexible-heredoc-error2.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
flexible-heredoc-error3.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
flexible-heredoc-error4.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
flexible-heredoc-error5.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
flexible-heredoc-error6.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
flexible-heredoc-error7.phpt Fix failing Zend/tests due to newlines 2018-10-15 05:04:29 +02:00
flexible-heredoc-error8.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
flexible-heredoc-error9.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
flexible-heredoc-error10.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
flexible-heredoc-error11.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
flexible-heredoc-error12.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
flexible-heredoc-error13.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
flexible-heredoc-nowdoc-lineno.phpt Implement flexible heredoc/nowdoc syntax 2018-04-13 21:35:37 +02:00
flexible-heredoc-nowdoc.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
flexible-nowdoc-error1.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
flexible-nowdoc-error2.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
flexible-nowdoc-error3.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
flexible-nowdoc-error4.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
flexible-nowdoc-error5.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
flexible-nowdoc-error6.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
flexible-nowdoc-error7.phpt Fix failing Zend/tests due to newlines 2018-10-15 05:04:29 +02:00
flexible-nowdoc-error8.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
float_prec_001.phpt
foreach_002.phpt var_dump(): Don't skip recursion detection on first level 2020-02-12 11:25:50 +01:00
foreach_003.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
foreach_004.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
foreach_005.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
foreach_006.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
foreach_007.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
foreach_008.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
foreach_009.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
foreach_010.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
foreach_011.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
foreach_012.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
foreach_013.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
foreach_014.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
foreach_015.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
foreach_016.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
foreach_017.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
foreach_018.phpt Fix foreach object property visibility checks 2016-11-22 21:01:15 +01:00
foreach_by_ref_repacking_insert.phpt Fix second part of bug #77903 2019-04-16 10:38:20 +02:00
foreach_empty_loop_leak.phpt Fixed memory leaks caused by exceptions thrown from destructors. 2016-12-07 00:41:07 +03:00
foreach_list_001.phpt
foreach_list_002.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
foreach_list_003.phpt
foreach_list_004.phpt
foreach_list_keyed.phpt
foreach_reference.phpt Use EXPECT instead of EXPECTF when possible 2018-02-20 21:53:48 +01:00
foreach_shadowed_dyn_property.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
foreach_shadowed_property.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:46:15 +02:00
foreach_temp_array_expr_with_refs.phpt
foreach_undefined.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
foreach_unset_globals.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
foreach.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
fr47160.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
func_get_args.phpt Promote some warnings to Errors in Zend basic functions 2020-03-31 16:32:58 +02:00
function_arguments_001.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
function_arguments_002.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
function_arguments_003.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
function_exists_basic.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
function_redecl.phpt
gc_001.phpt
gc_002.phpt
gc_003.phpt
gc_004.phpt var_dump(): Don't skip recursion detection on first level 2020-02-12 11:25:50 +01:00
gc_005.phpt
gc_006.phpt
gc_007.phpt var_dump(): Don't skip recursion detection on first level 2020-02-12 11:25:50 +01:00
gc_008.phpt
gc_009.phpt
gc_010.phpt var_dump(): Don't skip recursion detection on first level 2020-02-12 11:25:50 +01:00
gc_011.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
gc_012.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
gc_013.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
gc_014.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
gc_015.phpt
gc_016.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
gc_017.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
gc_018.phpt
gc_019.phpt
gc_020.phpt
gc_021.phpt
gc_022.phpt
gc_023.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
gc_024.phpt Remove superfluous SKIPIF sections in Zend tests 2018-02-03 16:16:49 +01:00
gc_025.phpt
gc_026.phpt
gc_027.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
gc_028.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
gc_029.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
gc_030.phpt
gc_031.phpt Use EXPECT instead of EXPECTF when possible 2018-02-20 21:53:48 +01:00
gc_032.phpt Fix gc_032.phpt 2017-10-13 11:59:28 +02:00
gc_033.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
gc_034.phpt
gc_035.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
gc_036.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
gc_037.phpt Added num_roots to gc_status 2018-06-13 16:41:51 +08:00
gc_038.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
gc_039.phpt Fixed incorrrecr zval_dtor() usage to replace value of argument passed by reference, that may lead to memory leaks. 2018-07-05 10:57:49 +03:00
gc_041.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
gc_042.phpt Merge branch 'PHP-7.2' into PHP-7.3 2019-08-26 17:52:37 +02:00
get_called_class_001.phpt
get_class_methods_001.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
get_class_methods_002.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
get_class_methods_003.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
get_class_vars_001.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
get_class_vars_002.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
get_class_vars_003.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
get_class_vars_004.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
get_class_vars_005.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
get_class_vars_006.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
get_class_vars_007.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
get_class_vars_typed_props.phpt Don't skip uninitialized typed props in get_class_vars() 2019-07-24 10:52:01 +02:00
get_defined_functions_basic.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
get_defined_vars.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
get_mangled_object_vars.phpt Add get_mangled_object_vars() function 2019-06-11 10:28:29 +02:00
get_parent_class_001.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
get_required_files.phpt remove support for string|unicode in tests 2018-02-22 08:11:30 +01:00
global_with_side_effect_name.phpt
globals_001.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
globals_002.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
globals_003.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
globals_004.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
globals_005.phpt
globals.inc
goto_in_foreach.phpt
grandparent_prototype.phpt Add additional protected visibility prototype test 2019-03-28 10:14:58 +01:00
halt01.phpt
halt02.phpt
halt03.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
halt_compiler1.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
halt_compiler2.phpt Clean DONE tags from tests 2019-11-07 21:31:47 +01:00
halt_compiler3.phpt Clean DONE tags from tests 2019-11-07 21:31:47 +01:00
halt_compiler4.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
halt_compiler5.phpt Merge branch 'PHP-7.4' 2019-10-02 12:08:12 +02:00
heredoc_001.phpt
heredoc_002.phpt
heredoc_003.phpt
heredoc_004.phpt
heredoc_005.phpt
heredoc_006.phpt
heredoc_007.phpt
heredoc_008.phpt
heredoc_011.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
heredoc_012.phpt
heredoc_013.phpt
heredoc_014.phpt
heredoc_015.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
heredoc_016.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
hex_overflow_32bit.phpt Use serialize_precision for var_dump() 2020-02-25 09:51:32 +01:00
illegal_offset_unset_isset_empty.phpt Add test for illegal unset/isset offset 2019-09-27 13:00:07 +02:00
incdec_ref_property.phpt
include_fail_during_read.phpt Fix leak when include fails in a read operation 2019-10-07 17:29:33 +02:00
include_stat_is_quiet.phpt Make error messages more consistent by fixing capitalization 2020-01-17 14:52:46 +01:00
incompat_ctx_user.phpt Remove static calls to non-static methods 2019-01-30 09:19:02 +01:00
increment_001.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
increment_function_return_error.phpt
indexing_001.phpt Add warning and convert to exception in string offset assignment: 2020-01-07 21:54:42 +01:00
indirect_call_array_001.phpt
indirect_call_array_002.phpt
indirect_call_array_003.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
indirect_call_array_004.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
indirect_call_array_005.phpt Remove static calls to non-static methods 2019-01-30 09:19:02 +01:00
indirect_call_from_constant.phpt
indirect_call_string_001.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
indirect_call_string_002.phpt
indirect_call_string_003.phpt Remove static calls to non-static methods 2019-01-30 09:19:02 +01:00
indirect_method_call_001.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
indirect_method_call_002.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
indirect_method_call_003.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
indirect_method_call_004.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
indirect_method_call_005.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
indirect_property_access.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
indirect_reference_this.phpt
inference_infinite_loop.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
inherit_internal_static.phpt Fixed bug #77498 2019-01-25 11:01:06 +01:00
instanceof_001.phpt Merge branch 'PHP-7.4' 2019-06-05 14:53:50 +02:00
instanceof_002.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
instanceof_const.phpt Return false for instanceof on literal 2017-12-19 22:16:45 +01:00
instanceof.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
int_conversion_exponents.phpt
int_overflow_32bit.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
int_overflow_64bit.phpt
int_special_values.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
int_static_prop_name.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
int_underflow_32bit.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
int_underflow_64bit.phpt Use EXPECT instead of EXPECTF when possible 2018-02-20 21:53:48 +01:00
inter_01.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:46:15 +02:00
inter_02.phpt
inter_03.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
inter_04.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
inter_05.phpt
inter_06.phpt
inter_007.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
interface_exists_001.phpt Adjust tests for zpp TypeError change 2019-03-11 11:32:20 +01:00
interface_exists_002.phpt
interface_extends_static.phpt Make class name references use the class_name production 2020-01-13 11:51:09 +01:00
invalid_parent_const_ref_leak.phpt
is_a.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
is_callable_trampoline_uaf.phpt Fix UAF in is_callable() and allocated trampoline 2020-01-30 11:04:59 +01:00
isset_001.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
isset_002.phpt
isset_003.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
isset_array.phpt Fix consistency issues with array accesses warnings/exceptions 2019-11-06 12:56:47 +01:00
isset_expr_error.phpt
isset_func_error.phpt
isset_str_offset.phpt Use EXPECT instead of EXPECTF when possible 2018-09-16 15:39:18 -03:00
jump01.phpt
jump02.phpt
jump03.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
jump04.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
jump05.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
jump06.phpt
jump07.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
jump08.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
jump09.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
jump10.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
jump11.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
jump12.phpt Use EXPECT instead of EXPECTF when possible 2018-02-20 21:53:48 +01:00
jump13.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
jump14.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
jump15.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
jump16.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
jump17.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
line_const_in_array.phpt
list_001.phpt
list_002.phpt
list_003.phpt
list_004.phpt
list_005.phpt
list_006.phpt
list_007.phpt
list_008.phpt
list_010.phpt
list_011.phpt
list_012.phpt
list_013.phpt
list_014.phpt Forbid use of array() in nested destructuring 2016-07-06 21:15:54 +02:00
list_destructuring_to_special_variables.phpt
list_empty_error_keyed.phpt Fix segfault when empty entry in keyed array assignment 2016-09-28 21:43:48 +02:00
list_empty_error.phpt
list_keyed_ArrayAccess.phpt
list_keyed_conversions.phpt Convert some notices to warnings 2019-10-02 10:34:08 +02:00
list_keyed_evaluation_order_2.phpt
list_keyed_evaluation_order_3.phpt
list_keyed_evaluation_order_nested.phpt Define Stringable with __toString():string method 2020-03-02 15:25:32 +01:00
list_keyed_evaluation_order.inc Define Stringable with __toString():string method 2020-03-02 15:25:32 +01:00
list_keyed_evaluation_order.phpt Define Stringable with __toString():string method 2020-03-02 15:25:32 +01:00
list_keyed_non_literals.phpt Use EXPECT instead of EXPECTF when possible 2018-02-20 21:53:48 +01:00
list_keyed_trailing_comma.phpt
list_keyed_undefined.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
list_keyed.phpt
list_mixed_keyed_unkeyed.phpt
list_mixed_nested_keyed_unkeyed.phpt
list_self_assign.phpt Fix some misspellings 2018-02-06 16:59:00 +01:00
loop_free_on_return.phpt
lsb_001.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
lsb_002.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
lsb_003.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
lsb_004.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
lsb_005.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
lsb_006.phpt Handle one more case I missed 2020-01-13 12:06:23 +01:00
lsb_007.phpt Make class name references use the class_name production 2020-01-13 11:51:09 +01:00
lsb_008.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
lsb_009.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
lsb_010.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
lsb_011.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
lsb_012.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
lsb_013.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
lsb_014.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
lsb_015.phpt Clean DONE tags from tests 2019-11-07 21:31:47 +01:00
lsb_016.phpt Clean DONE tags from tests 2019-11-07 21:31:47 +01:00
lsb_017.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
lsb_018.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
lsb_019.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
lsb_020.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
lsb_021.phpt Add test to make sure that (self::class)::method() is not forwarding LSB 2020-03-30 15:26:19 +02:00
lsb_022.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
magic_by_ref_001.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
magic_by_ref_002.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
magic_by_ref_003.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
magic_by_ref_004.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
magic_by_ref_005.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
magic_by_ref_006.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
magic_by_ref_007.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
magic_const_in_global_scope.phpt
magic_methods_001.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
magic_methods_002.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
magic_methods_003.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
magic_methods_004.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
magic_methods_005.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
magic_methods_006.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
magic_methods_007.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
magic_methods_008.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
magic_methods_009.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
magic_methods_010.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
memory_get_peak_usage.phpt
method_argument_binding.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
method_exists_002.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
method_exists.phpt
method_static_var.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
methods-on-non-objects-call-user-func.phpt Change argument error message format 2020-02-26 15:00:08 +01:00
methods-on-non-objects-catch.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
methods-on-non-objects-usort.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
methods-on-non-objects.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
mod_001.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
modify_isref_value_return.phpt
mul_001.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
name_collision_01.phpt
name_collision_02.phpt
name_collision_03.phpt
name_collision_04.phpt
name_collision_05.phpt
name_collision_06.phpt
name_collision_07.phpt
name_collision_08.phpt
name_collision_09.phpt
neg_num_string.phpt Fix T_NUM_STRING negation 2016-12-11 13:33:25 +01:00
nested_method_and_function.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
new_args_without_ctor.phpt
no_class_const_propagation_in_closures.phpt Deprecate unbinding $this from non-static closure 2019-07-22 11:39:52 +02:00
non_well_formed_param_exception.phpt Handle "non well formed" exception during ZPP 2019-10-08 17:17:49 +02:00
not_001.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
not_002.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
nowdoc_001.phpt
nowdoc_002.phpt
nowdoc_003.phpt
nowdoc_004.phpt
nowdoc_005.phpt
nowdoc_006.phpt
nowdoc_007.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
nowdoc_008.phpt
nowdoc_011.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
nowdoc_012.phpt
nowdoc_013.phpt Add WHITESPACE_SENSITIVE run-tests section 2020-02-03 10:08:15 +01:00
nowdoc_014.phpt
nowdoc_015.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
nowdoc_016.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
nowdoc_017.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
nowdoc.inc Sync leading and final newlines in source code files 2018-10-14 12:56:38 +02:00
ns_001.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
ns_002.phpt
ns_003.phpt
ns_004.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
ns_005.phpt
ns_006.phpt
ns_007.phpt
ns_008.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
ns_009.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
ns_010.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_011.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
ns_012.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
ns_013.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_014.phpt
ns_015.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_016.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_017.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_018.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_019.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_020.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_021.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_022.inc Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_022.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_023.phpt
ns_024.phpt
ns_025.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_026.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_027.inc Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_027.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_028.inc Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_028.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_029.phpt
ns_030.phpt
ns_031.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_032.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_033.phpt
ns_034.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_035.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_036.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_037.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_038.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
ns_039.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_040.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_041.phpt Remove bareword fallback for constants 2019-01-31 13:52:06 +01:00
ns_042.phpt
ns_043.phpt
ns_044.phpt
ns_045.phpt
ns_046.phpt
ns_047.phpt
ns_048.phpt
ns_049.phpt
ns_050.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_051.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_052.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_053.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
ns_054.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_055.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_056.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_057.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_058.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_059.phpt Use EXPECT instead of EXPECTF when possible 2018-02-20 21:53:48 +01:00
ns_060.phpt
ns_061.phpt
ns_062.phpt
ns_063.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_064.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_065.inc Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_065.phpt
ns_066.phpt
ns_067.inc
ns_067.phpt
ns_068.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
ns_069.inc Remove the binary cast from unrelated tests 2016-11-20 21:11:53 +01:00
ns_069.phpt Clean DONE tags from tests 2019-11-07 21:31:47 +01:00
ns_070.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_071.phpt Change argument error message format 2020-02-26 15:00:08 +01:00
ns_072.phpt Change argument error message format 2020-02-26 15:00:08 +01:00
ns_073.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_074.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_075.phpt
ns_076.phpt Remove bareword fallback for constants 2019-01-31 13:52:06 +01:00
ns_077_1.phpt
ns_077_2.phpt
ns_077_3.phpt
ns_077_4.phpt
ns_077_5.phpt
ns_077_7.phpt
ns_077_8.phpt
ns_078.phpt
ns_079.phpt
ns_080.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
ns_081.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_082.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
ns_083.phpt
ns_084.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_085.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_086.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_087.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
ns_088.phpt Add trailing comma syntax support for mixed and unmixed group use lists 2017-05-01 12:19:47 +02:00
ns_089.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
ns_090.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
ns_091.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
ns_092.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
ns_093.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
ns_094.phpt Fix #78880: Another bunch of spelling errors 2020-01-16 09:46:47 +01:00
ns_095.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
ns_096.phpt
ns_trailing_comma_01.phpt Add trailing comma syntax support for mixed and unmixed group use lists 2017-05-01 12:19:47 +02:00
ns_trailing_comma_02.phpt Add trailing comma syntax support for mixed and unmixed group use lists 2017-05-01 12:19:47 +02:00
ns_trailing_comma_error_01.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
ns_trailing_comma_error_02.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
ns_trailing_comma_error_03.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
ns_trailing_comma_error_04.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
ns_trailing_comma_error_05.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
ns_trailing_comma_error_06.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
ns_trailing_comma_error_07.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
ns_trailing_comma_error_08.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
numeric_literal_separator_001.phpt Implement numeric literal separators 2019-06-14 11:37:04 +02:00
numeric_literal_separator_002.phpt Implement numeric literal separators 2019-06-14 11:37:04 +02:00
numeric_literal_separator_003.phpt Implement numeric literal separators 2019-06-14 11:37:04 +02:00
numeric_literal_separator_004.phpt Implement numeric literal separators 2019-06-14 11:37:04 +02:00
numeric_literal_separator_005.phpt Implement numeric literal separators 2019-06-14 11:37:04 +02:00
numeric_literal_separator_006.phpt Implement numeric literal separators 2019-06-14 11:37:04 +02:00
numeric_literal_separator_007.phpt Implement numeric literal separators 2019-06-14 11:37:04 +02:00
numeric_literal_separator_008.phpt Implement numeric literal separators 2019-06-14 11:37:04 +02:00
numeric_literal_separator_009.phpt Implement numeric literal separators 2019-06-14 11:37:04 +02:00
numeric_string_errors_assign.phpt Use serialize_precision for var_dump() 2020-02-25 09:51:32 +01:00
numeric_string_errors.phpt Use serialize_precision for var_dump() 2020-02-25 09:51:32 +01:00
object_array_cast.phpt Convert numeric keys in object/array casts 2016-11-14 18:20:45 +00:00
object_gc_in_shutdown.phpt Don't disable object slot reuse while running shutdown functions 2019-03-18 10:02:31 +01:00
object_handlers.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
object_property_ref_incdec.phpt
object-null.phpt
objects_001.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
objects_002.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
objects_003.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
objects_004.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
objects_005.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
objects_006.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
objects_007.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
objects_008.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
objects_009.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
objects_010.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
objects_011.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
objects_012.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
objects_013.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
objects_014.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
objects_015.phpt Clean DONE tags from tests 2019-11-07 21:31:47 +01:00
objects_017.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
objects_018.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
objects_019.phpt
objects_021.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
objects_022.phpt Change argument error message format 2020-02-26 15:00:08 +01:00
objects_023.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
objects_024.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
objects_025.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
objects_026.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
objects_027.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
objects_028.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
objects_029.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
objects_030.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
objects_031.phpt
objects_032.phpt Clean DONE tags from tests 2019-11-07 21:31:47 +01:00
objects_033.phpt Enforce ordering of property compare in object comparisons 2018-09-10 08:47:50 -04:00
oct_overflow_char.phpt
oct_overflow.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
offset_array.phpt Convert some notices to warnings 2019-10-02 10:34:08 +02:00
offset_assign.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
offset_bool.phpt Convert some notices to warnings 2019-10-02 10:34:08 +02:00
offset_long.phpt Convert some notices to warnings 2019-10-02 10:34:08 +02:00
offset_null.phpt Convert some notices to warnings 2019-10-02 10:34:08 +02:00
offset_object.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
offset_string.phpt Convert some notices to warnings 2019-10-02 10:34:08 +02:00
or_001.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
overloaded_assign_prop_return_value.phpt Fix early free of assign_obj op_data 2019-12-20 10:35:34 +01:00
overloaded_func_001.phpt Remove ZEND_OVERLOADED_FUNCTION and corresponding call_method object handler 2019-02-07 21:05:46 +03:00
overloaded_func_002.phpt Give a reason why the test was skipped 2018-07-30 09:03:21 -03:00
overloaded_prop_assign_op_refs.phpt Fix handling of assign-ops on overloaded props with ref return 2018-06-09 00:36:46 +02:00
parent_class_name_without_parent.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
php_tag_only.inc Support <?php followed by EOF 2019-07-16 11:53:48 +02:00
php_tag_only.phpt Support <?php followed by EOF 2019-07-16 11:53:48 +02:00
pow_array_leak.phpt Throw "Unsupported operand types" error when using ** on arrays 2019-10-29 13:05:02 +01:00
pow_ref.phpt
property_access_errors_for_guarded_properties.phpt Fix missing access errors for guarded properties 2018-09-27 14:58:26 +02:00
property_exists.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
qm_assign_ref_unwrap_leak.phpt
real_cast.phpt Fix assertion when (real) is used 2020-03-16 18:37:01 +01:00
recursive_debug_info.phpt
require_parse_exception.phpt Deprecate allow_url_include 2019-07-22 11:39:52 +02:00
required_param_after_optional.phpt Deprecate required param after optional 2020-02-18 14:35:58 +01:00
result_unused.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
rope_with_exception.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
runtime_compile_time_binary_operands.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
self_and.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
self_class_const_in_unknown_scope.phpt Handle self::class separately from __CLASS__ in const eval 2019-01-04 11:46:57 +01:00
self_class_const_outside_class.phpt
self_in_eval.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
self_instanceof_outside_class.phpt
self_method_or_prop_outside_class.phpt
self_mod.phpt
self_or.phpt Merge branch 'PHP-7.0' into PHP-7.1 2016-12-02 12:35:44 +03:00
self_xor.phpt Merge branch 'PHP-7.0' into PHP-7.1 2016-12-02 15:42:19 +01:00
selfParent_001.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
selfParent_002.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
settype_array.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
settype_bool.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
settype_double.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
settype_int.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
settype_null.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
settype_object.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
settype_resource.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
settype_string.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
shift_001.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
shift_002.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
special_name_error1.phpt
special_name_error2.phpt
special_name_error3.phpt
static_in_trait_insteadof_list.phpt Make class name references use the class_name production 2020-01-13 11:51:09 +01:00
static_in_trait_insteadof_reference.phpt Make class name references use the class_name production 2020-01-13 11:51:09 +01:00
static_method_non_existing_class.phpt Fix leak on static method call on non-existent class 2019-10-10 11:40:49 +02:00
static_variable_in_private_method.phpt Remove func copy optimization for private method with static vars 2019-10-01 13:04:06 +02:00
static_variable_in_private_trait_method.phpt Addref static vars when not copying private method 2019-08-29 14:47:09 +02:00
static_variable.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
str_offset_001.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
str_offset_002.phpt Fix CRLF line-endings in tests 2016-11-20 22:31:24 +01:00
str_offset_003.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
str_offset_004.phpt Add warning and convert to exception in string offset assignment: 2020-01-07 21:54:42 +01:00
strict_001.phpt Convert some notices to warnings 2019-10-02 10:34:08 +02:00
strict_002.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
string_offset_errors.phpt Add opcodes to zend_wrong_string_offset() 2016-07-10 15:15:34 +02:00
string_offset_int_min_max.phpt Adjust test for notice->warning change 2019-12-19 12:03:09 +01:00
stringable_automatic_implementation.phpt Automatically implement Stringable interface 2020-03-02 15:25:33 +01:00
strlen.phpt
sub_001.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
switch_on_numeric_strings.phpt Implement jumptable optimization 2017-04-10 22:23:14 +02:00
temporary_cleaning_001.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
temporary_cleaning_002.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
temporary_cleaning_003.phpt
temporary_cleaning_004.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
temporary_cleaning_005.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
temporary_cleaning_006.phpt
temporary_cleaning_007.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
temporary_cleaning_008.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
temporary_cleaning_009.phpt
temporary_cleaning_010.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
temporary_cleaning_011.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
temporary_cleaning_012.phpt
temporary_cleaning_013.phpt Improve generated names for anonymous classes 2020-02-17 12:21:33 +01:00
temporary_cleaning_014.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
temporary_cleaning_015.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
temporary_cleaning_016.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
ternary_associativity.phpt Deprecate left-associative ternary 2019-05-07 14:06:29 +02:00
this_as_global.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
this_as_lexical_var_error.phpt Implement arrow functions 2019-05-02 15:04:03 +02:00
this_as_parameter.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
this_as_static.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
this_in_catch.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
this_in_eval.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
this_in_extract.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
this_in_foreach_001.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
this_in_foreach_002.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
this_in_foreach_003.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
this_in_foreach_004.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
this_in_isset.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
this_in_unset.phpt
this_reassign.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
throw_reference.phpt
throwable_001.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
throwable_002.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
throwable_003.phpt Sync leading and final newlines in *.phpt sections 2018-10-15 04:33:09 +02:00
throwing_overloaded_compound_assign_op.phpt Handle binary_op failure in overloaded assigns 2018-09-23 15:29:25 +02:00
trait_exists_001.phpt Adjust tests for zpp TypeError change 2019-03-11 11:32:20 +01:00
trait_exists_002.phpt
trait_exists_003.phpt
trait_type_errors.phpt Change argument error message format 2020-02-26 15:00:08 +01:00
uncaught_exception_error_supression.phpt Don't use needs_live_range hook for "special" live ranges 2019-08-26 16:12:03 +02:00
unexpected_ref_bug.phpt Remove support for mixing parameter order in implode() 2019-12-12 13:49:05 +01:00
unset_cast_removed.phpt Remove (unset) cast 2019-01-29 11:10:47 +01:00
unset_cv01.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
unset_cv02.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
unset_cv03.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
unset_cv04.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
unset_cv05.phpt Convert some notices to warnings 2019-10-02 10:34:08 +02:00
unset_cv06.phpt Replace dirname(__FILE__) by __DIR__ in tests 2019-03-15 22:55:30 +01:00
unset_cv08.phpt Use EXPECT instead of EXPECTF when possible 2018-02-20 21:53:48 +01:00
unset_cv09.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
unset_cv10.phpt Improve undefined variable error messages 2020-03-31 13:02:32 +02:00
unset_cv11.phpt
unset_cv12.phpt
unset.inc
unterminated_comment.phpt Make "unterminated comment" into a parse error 2019-10-30 11:00:27 +01:00
unused_shared_static_variables.phpt Fix assertion violation with composer 2017-01-24 11:32:41 +01:00
use_late_binding_conflict.phpt Fix "already in use" check inconsistencies/bugs 2016-10-07 00:12:55 +02:00
use_no_eval_conflict.phpt Fix "already in use" check inconsistencies/bugs 2016-10-07 00:12:55 +02:00
use_no_file_conflict_1.inc Fix bug #66773, #66862 2016-10-08 17:00:27 +02:00
use_no_file_conflict_2.inc Fix bug #66773, #66862 2016-10-08 17:00:27 +02:00
use_no_file_conflict.phpt Fix bug #66773, #66862 2016-10-08 17:00:27 +02:00
use_unlinked_class.phpt Allow throwing exception while loading parent class 2019-09-12 16:41:18 +02:00
variable_with_boolean_name.phpt
variable_with_integer_name.phpt
varvars_by_ref.phpt
vm_stack_with_arg_extend.phpt Reindent phpt files 2020-02-03 22:52:20 +01:00
xor_001.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
xor_002.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
xor_003.phpt Trim trailing whitespace in *.phpt 2018-10-14 19:45:12 +02:00
zend_operators.phpt Remove unused Git attributes ident 2018-07-25 00:53:25 +02:00
zend_signed_multiply-32bit.phpt Use EXPECT instead of EXPECTF when possible 2018-02-20 21:53:48 +01:00
zend_signed_multiply-64bit-2.phpt Use serialize_precision for var_dump() 2020-02-25 09:51:32 +01:00
zend_signed_multiply-64bit.phpt Use serialize_precision for var_dump() 2020-02-25 09:51:32 +01:00
zend_strtod.phpt Use serialize_precision for var_dump() 2020-02-25 09:51:32 +01:00