Blame | Letzte Änderung | Log anzeigen | RSS feed
<?php/* this file may be duplicated to provide testing formultiple php binaries or configurations. It is usedwith the -c option on run_tests2.php. All thesesettings will also go into the environment for teststhat are directly executed, so you can also set thingslike PHPRC here to force an executable to use aspecific php.ini file. */$conf = array(/* path to the php source tree */'TEST_PHP_SRCDIR' => NULL,/* executable that will be tested. Not used forweb based tests *///'TEST_PHP_EXECUTABLE' => '/usr/bin/php','TEST_PHP_EXECUTABLE' => '/usr/bin/php',/* 'TEST_PHP_EXECUTABLE' => 'c:\Programas\php\php.exe', *//* 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' => 1,'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. TheTEST_WEB_BASE_URL setting should be the base urlto access this path. If this is not used,TEST_WEB_BASE_URL should be the base url pointingto TEST_PHP_SRCDIR, which should then be accessable viaan http server.An example would be:TEST_WEB_BASE_URL=http://localhost/testTEST_BASE_PATH=/path/to/htdocs/test*/'TEST_BASE_PATH' => NULL,/* file extension of pages requested via httpthis allows for php to be configured to parseextensions other than php, usefull for multipleconfigurations 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' => 'XML_RPC2',/* 'TEST_PATHS' => 'xmlrpciBackend' *//* additional configuration items that may be setto provide proxy support for testes:timeoutproxy_hostproxy_portproxy_userproxy_pass*/);?>