diff options
| author | Nikita Popov <nikita.ppv@gmail.com> | 2018-09-17 12:49:10 +0200 |
|---|---|---|
| committer | Nikita Popov <nikita.ppv@gmail.com> | 2018-09-18 13:10:44 +0200 |
| commit | 4f36acb9e65935aa657f1f22e2320a401bdbdad3 (patch) | |
| tree | 3f4ced7aeb9c71358d8310c0a93b0315e7c16e68 /server-tests-config.php | |
| parent | e947bcaf3925ffba1b214399ad32c319ba038c55 (diff) | |
| download | php-git-4f36acb9e65935aa657f1f22e2320a401bdbdad3.tar.gz | |
Remove server-tests.php
As far as I know server-tests.php is unmaintained and no longer
used for anything nowadays. Some of the new sections are supported
by run-tests.php itself nowadays and some server-based tests
(using the CLI server or php-fpm) are performed through different
means.
Dropping server-tests.php has been discussed in a bunch of PR
discussions already, so let's go ahead with it...
Diffstat (limited to 'server-tests-config.php')
| -rwxr-xr-x | server-tests-config.php | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/server-tests-config.php b/server-tests-config.php deleted file mode 100755 index 5961deea98..0000000000 --- a/server-tests-config.php +++ /dev/null @@ -1,74 +0,0 @@ -<?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 -*/ -); - -?>
\ No newline at end of file |
