summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Another try at making concat_003 more reliableNikita Popov2016-12-291-28/+14
| | | | | | Use array_fill() for the array population loop -- this isn't the part that is being tested and on PHP 7.0 w/o opcache this duplicates the inner array a lot.
* Fix flaky openssl_pkey_new testNikita Popov2016-12-291-7/+7
| | | | | Public key size may vary by one bit... switch to using %d for key sizes.
* Make Opcache tests using the cli server more reliableMitch Hagstrand2016-12-291-14/+29
| | | | | | | | Same fix already applied to ext/curl/tests/server.inc and sapi/cli/tests/php_cli_server.inc 1. Increases the amount of time for the PHP built-in server to accept a connection 2. Outputs an error if the PHP built-in server fails
* Merge branch 'PHP-5.6' into PHP-7.0Christoph M. Becker2016-12-292-0/+7
|\ | | | | | | | | | | | | | | * PHP-5.6: Revert "Fix #73530: Unsetting result set may reset other result set" # Conflicts: # ext/sqlite3/sqlite3.c
| * Revert "Fix #73530: Unsetting result set may reset other result set"Christoph M. Becker2016-12-293-32/+8
| | | | | | | | | | | | | | This reverts commit eb570294a289b45d0dd38efc71065d6b0d314c4b. That commit caused a regression, so it's probably best to revert it, and to tackle the issue for the next minor release.
* | Merge branch 'bugfix_timeout_61471' of https://github.com/axot/php-src into ↵Xinchen Hui2016-12-291-1/+44
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | PHP-7.0 * 'bugfix_timeout_61471' of https://github.com/axot/php-src: define php_ap_map_http_request_error function for older httpd only add old versions of httpd support typo fixed bug fixed #61471 in apache2handler
| * | define php_ap_map_http_request_error function for older httpd onlyZheng SHAO2016-12-291-31/+24
| | |
| * | add old versions of httpd supportZheng SHAO2016-12-291-0/+34
| | |
| * | Fixed NEWS conflictsZheng SHAO2016-12-2014-19/+232
| |\ \
| * | | typo fixedZheng SHAO2016-12-171-1/+1
| | | |
| * | | bug fixed #61471 in apache2handlerZheng SHAO2016-12-172-1/+20
| | | |
* | | | Disable AppVeyor fast_finishNikita Popov2016-12-271-3/+0
| | | | | | | | | | | | | | | | As NTS and TS fail in different ways, we want to see both.
* | | | Makes the sapi web server and curl tests more reliableMitch Hagstrand2016-12-275-123/+74
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. Increased the time for the sapi/cli/tests/php_cli_server.inc to accept connections. 2. sapi/cli/tests/php_cli_server.inc has errors messages and a `stop` function. 3. bug67429.phpt uses the `stop` function to shutdown the webserver before starting a new one. 4. Removed ext/curl/tests/bug48203_multi-win32.phpt test now that ext/curl/tests/bug48203_multi.phpt runs on Windows also.
* | | | Fixes the curl tests to be more reliable in Travis CIMitch Hagstrand2016-12-272-37/+55
| | | | | | | | | | | | | | | | | | | | | | | | 1. Increases the amount of time for the PHP built-in server to accept a connection 2. Outputs an error if the PHP built-in server fails 3. In bug48203_multi.phpt the test no longer starts and stops multiple PHP built-in servers
* | | | Interpretation of curl_setopt values for boolean parametersdedal.qq2016-12-251-12/+7
| | | |
* | | | Fixes #65689. PDO_Firebrid / exec() does not free allocated statement.Dorin Marcoci2016-12-251-2/+10
| | | |
* | | | Fix alpn_ctx leaking in opensslBob Weinand2016-12-221-2/+15
| | | |
* | | | Fixed bug #73373 (deflate_add does not verify that output was not truncated)Bob Weinand2016-12-223-2/+74
| | | |
* | | | Fix IS_UNDEF comparisons in opcacheSébastien Santoro2016-12-221-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These conditions were formerly `!q->pData` and `!p->pData`, and should now be detected as undefined variables, using the special type IS_UNDEF. Incidentally, this syntax raised a logical-not-parentheses compiler warning, now gone.
* | | | Fixed bug #73704 (phpdbg shows the wrong line in files with shebang)Bob Weinand2016-12-225-14/+62
| | | |
* | | | Increase timing quota for small string concat testNikita Popov2016-12-211-3/+3
| | | | | | | | | | | | | | | | Test is regularly failing on Travis.
* | | | Fix #73753 - Unpacked Arrays and DuplicationDavid Walker2016-12-213-3/+34
| | | |
* | | | Fix issue with -- in phpdbg command lineBob Weinand2016-12-211-1/+1
| | | |
* | | | Fixed bug #73792 (invalid foreach loop hangs script)Dmitry Stogov2016-12-204-0/+51
| |/ / |/| |
* | | update NEWSAnatol Belski2016-12-191-0/+3
| | |
* | | Compatibility with Firebird & Oracle select syntax.Dorin Marcoci2016-12-191-2/+6
| | |
* | | fix protoAnatol Belski2016-12-192-2/+2
| | |
* | | Cursor is not opened on singleton selects.Dorin Marcoci2016-12-182-2/+21
| | | | | | | | | | | | | | | | | | Test case for unregistered bug on FB3 singleton selects Set error mode to warning instead of exception.
* | | fix arg spec and datatype, follow up on 73594Anatol Belski2016-12-181-2/+2
| | |
* | | Fixed bug #73594Bruce Weirdan2016-12-183-1/+52
| | | | | | | | | | | | | | | | | | | | | Skip the tests when local resolver does not behave * Added SKIPIF sections to check local resolver * Added test to check $authns parameter
* | | Fix bug #46103Nikita Popov2016-12-183-0/+32
| | |
* | | Add test for get_browser() in object modeNikita Popov2016-12-181-0/+94
| | | | | | | | | | | | All other tests only check array return values...
* | | Merge branch 'PHP-5.6' into PHP-7.0Anatol Belski2016-12-171-3/+6
|\ \ \ | | |/ | |/| | | | | | | * PHP-5.6: fix C89 compat
| * | fix C89 compatAnatol Belski2016-12-171-3/+6
| | |
* | | replace default appveyor build versionAnatol Belski2016-12-171-0/+3
| | |
* | | add Appveyor fast_failAnatol Belski2016-12-171-0/+3
| | |
* | | improve error checkAnatol Belski2016-12-171-7/+8
| |/ |/|
* | turn mcrypt back on for Appveyor runsAnatol Belski2016-12-171-0/+1
| | | | | | | | (cherry picked from commit fca2312fbecbc8eb44639d5141bfeae48976206b)
* | add build status badgeAnatol Belski2016-12-171-0/+1
| | | | | | | | (cherry picked from commit 3a886c9d20f450545a0d93bb4fc974e28a50df85)
* | add scripts for AppVeyor integrationAnatol Belski2016-12-175-0/+202
| | | | | | | | (cherry picked from commit c737d6fb495ee986f7819472db861aa9e1bf42b1)
* | Silence warning from unhandled enumSara Golemon2016-12-171-0/+2
| | | | | | | | (cherry picked from commit 57bbe2c140752f491b1fa24336b817bd48f65a93)
* | fix leaking streams and memory mapped filesAnatol Belski2016-12-171-7/+19
| | | | | | | | (cherry picked from commit f1ff23095b1a4fe6d6a65331dda7832ae02eb1a1)
* | Fix stack management in ini scannerNikita Popov2016-12-163-2773/+1952
| |
* | make timing check more forgiving in these testsAnatol Belski2016-12-152-3/+5
| | | | | | | | | | | | | | | | Particularly on slower VMs, the sporadic fails can still happen. The timing is kept in an uncritical range, but allows the tests pass there. Mayby, it'd make sense to introduce a new group for this kind of tests, so tests requiring exact time measurement can be avoided on unsuitable environments.
* | Merge branch 'PHP-5.6' into PHP-7.0Matteo Beccati2016-12-152-1/+23
|\ \ | |/ | | | | | | * PHP-5.6: Skip tests when secure_file_priv dir not writable
| * Skip tests when secure_file_priv dir not writableMatteo Beccati2016-12-152-1/+23
| |
* | Add missing UPGRADING entry. Manual is updated before 7.0 release.Yasuo Ohgaki2016-12-151-0/+1
| |
* | extend skip sectionAnatol Belski2016-12-141-0/+8
| | | | | | | | | | The day light offset is calculated based on the system TZ, so with an unsuitable one there's no way to workaround the false positives.
* | Partially fix bug #70492Nikita Popov2016-12-142-2/+2
| | | | | | | | The libmagic portion is missing.
* | cleanup temporary dataAnatol Belski2016-12-142-3/+7
| |