summaryrefslogtreecommitdiff
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'PHP-5.6'Yasuo Ohgaki2015-02-032-7/+34
|\ | | | | | | | | | | | | | | | | * PHP-5.6: Fixed Bug #67988 htmlspecialchars() does not respect default_charset specified by ini_set. Conflicts: main/main.c tests/basic/encoding.phpt
| * Fixed Bug #67988 htmlspecialchars() does not respect default_charset ↵Yasuo Ohgaki2015-02-032-7/+34
| | | | | | | | specified by ini_set.
* | Remove preg_replace /e modifierNikita Popov2015-01-261-21/+0
| |
* | Remove assignment of new by referenceNikita Popov2015-01-265-67/+11
| |
* | Error on invalid octal (fixes PHPSadness #31)Andrea Faulds2015-01-171-0/+8
| | | | | | | | Further error checks
* | Fix tests I broke with the E_ERROR > E_RECOVERABLE_ERROR changeKalle Sommer Nielsen2014-12-293-3/+3
| |
* | Use "float" and "integer" in typehint and zpp errorsAndrea Faulds2014-12-21139-151/+151
| |
* | Unicode Codepoint Escape SyntaxAndrea Faulds2014-12-199-0/+98
| |
* | Merge branch 'zppFailOnOverflow'Andrea Faulds2014-12-131-1/+3
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * zppFailOnOverflow: Fix MySQLi tests Fixed gd test Refactor ZEND_LONG_MAX/MIN checks into ZEND_DOUBLE_FITS_LONG() Fixed copy-and-paste error Fix more 32-bit tests Skip buncha tests on 32-bit skip simplexml skip posix 32-bit skip tests on 32-bit Fixes simplexml test Fixes posix tests Fixes iconv tests Marked tests as 32-bit Fixed more 32-bit tests Fixed some 32-bit tests Mark said ext/date tests as 32-bit only Fixed ext/date tests broken by zpp error on overflow Fixed broken tests Make zpp fail if NaN passed for int, or out-of-range float for non-capping int Conflicts: ext/date/tests/getdate_variation7.phpt ext/date/tests/localtime_variation3.phpt
| * \ Merge branch 'master' into zppFailOnOverflowAndrea Faulds2014-11-293-3/+3
| |\ \
| * | | Skip buncha tests on 32-bitAndrea Faulds2014-11-291-1/+3
| | | |
* | | | Merge branch 'PHP-5.6'Anatol Belski2014-12-062-8/+0
|\ \ \ \ | |_|/ / |/| | / | | |/ | |/| | | | * PHP-5.6: updated NEWS Fixed bug #65230 setting locale randomly broken
| * | Merge branch 'PHP-5.5' into PHP-5.6Anatol Belski2014-12-062-8/+0
| |\ \ | | | | | | | | | | | | | | | | * PHP-5.5: Fixed bug #65230 setting locale randomly broken
| | * | Fixed bug #65230 setting locale randomly brokenAnatol Belski2014-12-062-8/+0
| | | |
* | | | Merge branch 'PHP-5.6'Stanislav Malyshev2014-11-243-57/+0
|\ \ \ \ | |/ / / | | | | | | | | | | | | * PHP-5.6: move tests into proper place
| * | | Merge branch 'PHP-5.5' into PHP-5.6Stanislav Malyshev2014-11-243-57/+0
| |\ \ \ | | |/ / | | | | | | | | | | | | * PHP-5.5: move tests into proper place
| | * | move tests into proper placeStanislav Malyshev2014-11-243-57/+0
| | | |
* | | | Merge branch 'PHP-5.6'Stanislav Malyshev2014-11-233-0/+57
|\ \ \ \ | |/ / / | | | | | | | | | | | | | | | | | | | | * PHP-5.6: tests image gd xmlwriter_full_end_element tests Tests for writeAttributeNS and xmlwriter_write_attribute_ns
| * | | Merge branch 'PHP-5.5' into PHP-5.6Stanislav Malyshev2014-11-233-0/+57
| |\ \ \ | | |/ / | | | | | | | | | | | | | | | | | | | | * PHP-5.5: tests image gd xmlwriter_full_end_element tests Tests for writeAttributeNS and xmlwriter_write_attribute_ns
| | * | tests image gdMarcelo Diniz2014-08-233-0/+57
| | | |
| | * | The test output is dependent on expose_php iniRasmus Lerdorf2014-07-141-0/+1
| | | |
| * | | test to function addcslashesmarcosptf2014-11-231-12/+0
| | | | | | | | | | | | | | | | test to function bin2hex
| * | | testmarcosptf2014-11-231-0/+12
| | | |
| * | | The test output is dependent on expose_php iniRasmus Lerdorf2014-07-141-0/+1
| | | |
* | | | typo fixes - https://github.com/vlajos/misspell_fixerVeres Lajos2014-11-193-3/+3
| |_|/ |/| |
* | | Remove <% and <script language="php"> tagsNikita Popov2014-10-053-51/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As per https://wiki.php.net/rfc/remove_alternative_php_tags. Removes: * <% opening tag * %> closing tag * <%= short opening tag * /<script\s+language\s*=\s*(php|"php"|'php')\s*>/i opening tag * /</script>/i closing tag * asp_tags ini directive
* | | Moved checks and error reporting related to static methods from DO_FCALL ↵Dmitry Stogov2014-10-041-10/+10
| | | | | | | | | | | | inti INTI_FCALL* opcodes that may really deal with static methods. (In some rare cases it may lead to different order of warning messages).
* | | Mark three foreach tests as XFAILNikita Popov2014-10-033-1/+7
| | | | | | | | | | | | | | | | | | A lot of work is needed to properly handle all foreach edge cases, which is not going to happen anytime soon. So marking these tests as XFAIL for now.
* | | Merge branch 'coalesce_operator'Andrea Faulds2014-09-281-0/+79
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | * coalesce_operator: Extended coalesce operator test case for ordering/short-circuiting Ensure not evaluated twice Added test Initial coalesce operator implementation
| * | | Extended coalesce operator test case for ordering/short-circuitingAndrea Faulds2014-09-231-1/+12
| | | |
| * | | Ensure not evaluated twiceAndrea Faulds2014-09-161-1/+11
| | | |
| * | | Added testAndrea Faulds2014-09-161-0/+58
| | | |
* | | | Merge branch 'master' into integer_semanticsAndrea Faulds2014-09-212-7/+7
|\ \ \ \
| * \ \ \ Merge branch 'master' into issue-67910Florian MARGAINE2014-09-201-21/+40
| |\ \ \ \ | | |/ / / | | | | | | | | | | | | | | | | | | | | Conflicts: README.PARAMETER_PARSING_API ext/gmp/tests/001.phpt
| * | | | Replaces php5 with php7, without whitespace changes.Florian MARGAINE2014-09-202-7/+7
| | | | |
* | | | | Merge branch 'master' into integer_semanticsAndrea Faulds2014-09-168-66/+66
|\ \ \ \ \ | | |/ / / | |/| | | | | | | | | | | | | Conflicts: Zend/zend_operators.h
| * | | | Fix string incrementNikita Popov2014-09-051-21/+40
| |/ / /
| * | | Merge remote-tracking branch 'php-src/master' into astNikita Popov2014-08-162-6/+6
| |\ \ \ | | | | | | | | | | | | | | | | | | | | Conflicts: ext/opcache/Optimizer/optimize_func_calls.c
| * \ \ \ Merge remote-tracking branch 'php-src/phpng' into astNikita Popov2014-08-163-2/+36
| |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: Zend/zend_ast.c Zend/zend_compile.c Zend/zend_language_parser.y Incomplete merge!
| * | | | | Fix tests to account for warnings moved from RT to CTNikita Popov2014-08-152-2/+4
| | | | | |
| * | | | | Fix test to conform with UVS changesNikita Popov2014-08-151-23/+13
| | | | | |
| * | | | | Fix list() test wrt new assignment orderNikita Popov2014-08-151-4/+4
| | | | | |
| * | | | | Restore old evaluation orderNikita Popov2014-08-151-13/+3
| | | | | | | | | | | | | | | | | | | | | | | | ${a()}[b()][c()] = d() will now evaluate in order a, b, c, d.
| * | | | | Fix code in testNikita Popov2014-07-261-1/+1
| | | | | |
| * | | | | Update error messageNikita Popov2014-07-261-2/+1
| | | | | |
* | | | | | Updated 32-bit << testAndrea Faulds2014-08-191-1/+0
| | | | | |
* | | | | | Updated << 64-bit testsAndrea Faulds2014-08-192-161/+161
| | | | | |
* | | | | | Updated >> 64-bit testsAndrea Faulds2014-08-192-46/+42
| | | | | |
* | | | | | Fixed 32-bit testAndrea Faulds2014-08-191-199/+198
| | | | | |
* | | | | | Fixed 64-bit testsAndrea Faulds2014-08-194-585/+583
| |_|/ / / |/| | | |