aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lint_test.php
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/10716] Collect standard error from executed php process.Oleg Pudeyev2012-12-041-2/+3
| | | | | | | | | | | | | php executes everything via a shell. The standard error of this top level shell is not captured by exec/shell_exec/popen/etc. and there is no way to capture it. proc_open might work but it is a nightmare to use and without multiplexing reads from standard error and standard output it can deadlock. Thus the solution in this commit. Put the command into a subshell and redirect standard error to standard output for the subshell. PHPBB3-10716
* [ticket/10716] Skip test if php is not in PATH.Oleg Pudeyev2012-12-041-0/+8
| | | | PHPBB3-10716
* [ticket/10716] Exclude our dependencies from linting.Oleg Pudeyev2012-12-041-1/+12
| | | | PHPBB3-10716
* [ticket/10716] Only lint on php 5.3+.Oleg Pudeyev2012-12-041-0/+5
| | | | PHPBB3-10716
* [ticket/10716] php parse all php files as part of the test suite.Oleg Pudeyev2012-12-041-0/+49
PHPBB3-10716