From b671380b6b5b6e1f4f235e810afa4199e989d2ba Mon Sep 17 00:00:00 2001 From: Shane Caraveo Date: Tue, 25 Mar 2003 07:45:18 +0000 Subject: many new enhancements to run-tests that allow for testing cgi and other sapi modules via http. see README.TESTING2 for more details several sapi tests added --- run-tests-config.php | 74 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 run-tests-config.php (limited to 'run-tests-config.php') diff --git a/run-tests-config.php b/run-tests-config.php new file mode 100644 index 0000000000..4ac21d7d4c --- /dev/null +++ b/run-tests-config.php @@ -0,0 +1,74 @@ + 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 accessable 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 accessable 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, usefull 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 ; seperated 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 -- cgit v1.2.1