mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
60a69daec6
This patch adds missing newlines, trims multiple redundant final newlines into a single one, and trims redundant leading newlines. According to POSIX, a line is a sequence of zero or more non-' <newline>' characters plus a terminating '<newline>' character. [1] Files should normally have at least one final newline character. C89 [2] and later standards [3] mention a final newline: "A source file that is not empty shall end in a new-line character, which shall not be immediately preceded by a backslash character." Although it is not mandatory for all files to have a final newline fixed, a more consistent and homogeneous approach brings less of commit differences issues and a better development experience in certain text editors and IDEs. [1] http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_206 [2] https://port70.net/~nsz/c/c89/c89-draft.html#2.1.1.2 [3] https://port70.net/~nsz/c/c99/n1256.html#5.1.1.2
75 lines
2.0 KiB
PHP
Executable File
75 lines
2.0 KiB
PHP
Executable File
<?php
|
|
/* this file may be duplicated to provide testing for
|
|
multiple php binaries or configurations. It is used
|
|
with the -c option on server-tests.php. All these
|
|
settings will also go into the environment for tests
|
|
that are directly executed, so you can also set things
|
|
like PHPRC here to force an executable to use a
|
|
specific php.ini file. */
|
|
|
|
$conf = array(
|
|
/* path to the php source tree */
|
|
'TEST_PHP_SRCDIR' => NULL,
|
|
|
|
/* executable that will be tested. Not used for
|
|
web based tests */
|
|
'TEST_PHP_EXECUTABLE' => NULL,
|
|
|
|
/* php.ini to use when executing php */
|
|
'PHPRC' => NULL,
|
|
|
|
/* log format */
|
|
'TEST_PHP_LOG_FORMAT' => 'LEODC',
|
|
|
|
/* debugging detail in output. */
|
|
'TEST_PHP_DETAILED' => 0,
|
|
|
|
/* error style for editors or IDE's */
|
|
'TEST_PHP_ERROR_STYLE' => 'EMACS',
|
|
|
|
'REPORT_EXIT_STATUS' => 0,
|
|
'NO_PHPTEST_SUMMARY' => 0,
|
|
|
|
/* don't ask, and don't send results to QA if true */
|
|
'NO_INTERACTION' => true,
|
|
|
|
/* base url prefixed to any requests */
|
|
'TEST_WEB_BASE_URL' => NULL,
|
|
|
|
/* if set, copy phpt files into this directory,
|
|
which should be accessible via an http server. The
|
|
TEST_WEB_BASE_URL setting should be the base url
|
|
to access this path. If this is not used,
|
|
TEST_WEB_BASE_URL should be the base url pointing
|
|
to TEST_PHP_SRCDIR, which should then be accessible via
|
|
an http server.
|
|
|
|
An example would be:
|
|
TEST_WEB_BASE_URL=http://localhost/test
|
|
TEST_BASE_PATH=/path/to/htdocs/test
|
|
*/
|
|
'TEST_BASE_PATH' => NULL,
|
|
|
|
/* file extension of pages requested via http
|
|
this allows for php to be configured to parse
|
|
extensions other than php, useful for multiple
|
|
configurations under a single webserver */
|
|
'TEST_WEB_EXT' => 'php',
|
|
|
|
/* if true doesn't run tests, just outputs executable info */
|
|
'TEST_CONTEXT_INFO' => false,
|
|
|
|
/* : or ; separated list of paths */
|
|
'TEST_PATHS' => NULL
|
|
/* additional configuration items that may be set
|
|
to provide proxy support for testes:
|
|
timeout
|
|
proxy_host
|
|
proxy_port
|
|
proxy_user
|
|
proxy_pass
|
|
*/
|
|
);
|
|
|
|
?>
|