summaryrefslogtreecommitdiff
path: root/run-tests.php
Commit message (Collapse)AuthorAgeFilesLines
* Fix [valid] valgrind warnings, add first watchpoints testBob Weinand2015-07-151-2/+3
|
* Fix last invalid readBob Weinand2015-08-031-2/+2
| | | | Also revert debugging run-tests.php changes...
* Fix a few valgrind errors in phpdbgBob Weinand2015-08-031-2/+2
|
* Move phpdbg tests to .phpt mechanismBob Weinand2015-07-201-27/+96
| | | | Also add a few more in-depth tests related to $argv, breakpoints and uncaught exceptions
* XFAILED tests are not "You may have found a problem in PHP"Bob Weinand2015-07-021-1/+1
|
* Remove debug codesXinchen Hui2015-05-271-1/+0
|
* Fixed sapi/tests (maybe needs some run-test.php people's reviewing)Xinchen Hui2015-05-271-6/+18
|
* Added experimental (disabled by default) file based opcode cache.Dmitry Stogov2015-05-061-6/+9
|
* really only signal reportsMichael Wallner2015-01-301-1/+1
|
* also catch segfaults reported by subshellsMichael Wallner2015-01-301-1/+4
|
* Remove set_magic_quotes_runtimeNikita Popov2015-01-171-2/+0
| | | | And the alias magic_quotes_runtime
* Merge branch 'PHP-5.6'Ferenc Kovacs2014-12-041-1/+1
|\ | | | | | | | | | | | | * PHP-5.6: add initial install switch to C travis project instead of PHP use the generic TRAVIS environment var to check for travis (see http://docs.travis-ci.com/user/ci-environment/)
| * Merge branch 'PHP-5.5' into PHP-5.6Ferenc Kovacs2014-12-041-1/+1
| |\ | | | | | | | | | | | | | | | | | | * PHP-5.5: add initial install switch to C travis project instead of PHP use the generic TRAVIS environment var to check for travis (see http://docs.travis-ci.com/user/ci-environment/)
| | * use the generic TRAVIS environment var to check for travis (see ↵Ferenc Kovacs2014-12-041-1/+1
| | | | | | | | | | | | http://docs.travis-ci.com/user/ci-environment/)
* | | Merge branch 'PHP-5.6'Ferenc Kovacs2014-12-021-0/+1
|\ \ \ | |/ / | | | | | | | | | * PHP-5.6: make sure that we don't truncate the stack trace and cause false test failures when the test is executed in a directory with long path
| * | Merge branch 'PHP-5.5' into PHP-5.6Ferenc Kovacs2014-12-021-0/+1
| |\ \ | | |/ | | | | | | | | | * PHP-5.5: make sure that we don't truncate the stack trace and cause false test failures when the test is executed in a directory with long path
| | * Merge branch 'PHP-5.4' into PHP-5.5Ferenc Kovacs2014-12-021-0/+1
| | |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | * PHP-5.4: make sure that we don't truncate the stack trace and cause false test failures when the test is executed in a directory with long path Conflicts: run-tests.php
| | | * make sure that we don't truncate the stack trace and cause false test ↵Ferenc Kovacs2014-12-021-0/+1
| | | | | | | | | | | | | | | | failures when the test is executed in a directory with long path
| | * | Don't treat warnings as failures in the junit outputMatteo Beccati2014-10-291-1/+4
| | | | | | | | | | | | | | | | This matches Travis and the actual return code.
| * | | Don't treat warnings as failures in the junit outputMatteo Beccati2014-10-291-1/+4
| | | | | | | | | | | | | | | | This matches Travis and the actual return code.
* | | | typo fixes - https://github.com/vlajos/misspell_fixerVeres Lajos2014-11-191-1/+1
| | | |
* | | | Don't treat warnings as failures in the junit outputMatteo Beccati2014-10-291-1/+4
| | | | | | | | | | | | | | | | This matches Travis and the actual return code.
* | | | Merge branch 'master' into catchable-fatals/methods-on-non-objectsTimm Friebe2014-09-251-3/+6
|\ \ \ \
| * | | | s/PHP 5/PHP 7/Johannes Schlüter2014-09-191-1/+1
| | | | |
| * | | | Also skip line-overwriting if SHOW_ONLY_GROUPS is usedNikita Popov2014-09-131-1/+1
| | | | |
| * | | | Don't show TEST line if SHOW_ONLY_GROUPS is usedNikita Popov2014-09-111-1/+4
| | | | |
| * | | | Escape non-printable characters in the junit XML outputMatteo Beccati2014-05-271-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | XML doesn't allow most of the characters < 0x20 and binary output breaks XML parsers. Such characters are not allowed as entities either, so the generated entities are escaped in order to be printed as text.
| * | | | Fixed broken XML junit output due to escaping of CDATA sectionsMatteo Beccati2014-05-271-7/+8
| | | | | | | | | | | | | | | | | | | | I've removed CDATA and used htmlspecialchars as the output might not be UTF-8 safe, as pointed out by ircmaxell in 26b37f1792dfaf9b0b30f81e492c8f68b9ece571
* | | | | Merge in changes from masterTimm Friebe2014-07-061-10/+15
|\ \ \ \ \ | | |/ / / | |/| | | | | | | | Now also includes "on [TYPE]" in "Call to a member function" error
| * | | | Merge branch 'PHP-5.5' into PHP-5.6Matteo Beccati2014-05-271-0/+3
| |\ \ \ \ | | | |/ / | | |/| | | | | | | | | | | | * PHP-5.5: Escape non-printable characters in the junit XML output
| | * | | Merge branch 'PHP-5.4' into PHP-5.5Matteo Beccati2014-05-271-0/+3
| | |\ \ \ | | | | |/ | | | |/| | | | | | | | | | | * PHP-5.4: Escape non-printable characters in the junit XML output
| | | * | Escape non-printable characters in the junit XML outputMatteo Beccati2014-05-271-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | XML doesn't allow most of the characters < 0x20 and binary output breaks XML parsers. Such characters are not allowed as entities either, so the generated entities are escaped in order to be printed as text.
| * | | | Merge branch 'PHP-5.5' into PHP-5.6Matteo Beccati2014-05-271-7/+8
| |\ \ \ \ | | |/ / / | | | | / | | |_|/ | |/| | * PHP-5.5: Fixed broken XML junit output due to escaping of CDATA sections
| | * | Merge branch 'PHP-5.4' into PHP-5.5Matteo Beccati2014-05-271-7/+8
| | |\ \ | | | |/ | | | | | | | | | | | | * PHP-5.4: Fixed broken XML junit output due to escaping of CDATA sections
| | | * Fixed broken XML junit output due to escaping of CDATA sectionsMatteo Beccati2014-05-271-7/+8
| | | | | | | | | | | | | | | | I've removed CDATA and used htmlspecialchars as the output might not be UTF-8 safe, as pointed out by ircmaxell in 26b37f1792dfaf9b0b30f81e492c8f68b9ece571
| * | | Merge branch 'PHP-5.5' into PHP-5.6Matteo Beccati2014-05-251-0/+1
| |\ \ \ | | |/ / | | | | | | | | | | | | * PHP-5.5: Fix broken Junit output with --disable-cgi
| | * | Merge branch 'PHP-5.4' into PHP-5.5Matteo Beccati2014-05-251-0/+1
| | |\ \ | | | |/ | | | | | | | | | | | | * PHP-5.4: Fix broken Junit output with --disable-cgi
| | | * Fix broken Junit output with --disable-cgiMatteo Beccati2014-05-251-0/+1
| | | |
| * | | Merge branch 'PHP-5.5' into PHP-5.6Adam Harvey2014-05-221-3/+3
| |\ \ \ | | |/ / | | | | | | | | | | | | * PHP-5.5: Fix run-tests.php with Valgrind >= 3.10.0.
| | * | Merge branch 'PHP-5.4' into PHP-5.5Adam Harvey2014-05-221-3/+3
| | |\ \ | | | |/ | | | | | | | | | | | | | | | | | | | | | | | | * PHP-5.4: Fix run-tests.php with Valgrind >= 3.10.0. Conflicts: run-tests.php
| | | * Fix run-tests.php with Valgrind >= 3.10.0.Adam Harvey2014-05-221-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The version test that we had in run-tests.php assumed that the major and minor version numbers were always single digits. This removes that assumption and also uses version_compare() for the comparison instead of naively converting it to an integer.
| | * | fix regex to detect valgrind versionNuno Lopes2014-02-081-1/+1
| | | | | | | | | | | | | | | | New PCRE version got stricter
| * | | fix regex to detect valgrind versionNuno Lopes2014-02-081-1/+1
| | | | | | | | | | | | | | | | New PCRE version got stricter
| * | | Add some basic and apparmor tests to fpmGernot Vormayr2014-01-171-1/+1
| | | |
* | | | Add support for PHP's 'extended information for debugger/profiler' modeTimm Friebe2014-07-061-0/+3
| | | |
* | | | fix regex to detect valgrind versionNuno Lopes2014-02-081-1/+1
| | | | | | | | | | | | | | | | New PCRE version got stricter
* | | | Merge branch 'fpm-apparmor-fixed' of https://github.com/notti/php-srcAntony Dovgal2014-01-161-1/+1
|\ \ \ \ | |/ / / |/| | | | | | | | | | | | | | | | | | | * 'fpm-apparmor-fixed' of https://github.com/notti/php-src: Add some basic and apparmor tests to fpm Add --force-stderr to fpm Add apparmor change hat functionality to fpm
| * | | Add some basic and apparmor tests to fpmGernot Vormayr2014-01-071-1/+1
| | | |
* | | | Merge branch 'PHP-5.5' into PHP-5.6Dmitry Stogov2013-11-261-0/+1
|\ \ \ \ | | |/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | * PHP-5.5: Fixed bug #65559 (Opcache: cache not cleared if changes occur while running) bring the news Conflicts: NEWS
| * | | Fixed bug #65559 (Opcache: cache not cleared if changes occur while running)Dmitry Stogov2013-11-261-0/+1
| | | |