X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=php%2Fphpxmlrpc%2Ftests%2Fphpunit_coverage.php;h=eafe0e8d7f088639a290caf0421b0a2416cc8229;hb=c379c0fff5edc592cc5d5d647c7fadb91317db87;hp=ae7b998b8d227d7093c83f83c408ebdbd77e8231;hpb=ae8b10f8363f7a1df02e77cbd820904c4ded10b8;p=plcapi.git diff --git a/php/phpxmlrpc/tests/phpunit_coverage.php b/php/phpxmlrpc/tests/phpunit_coverage.php index ae7b998..eafe0e8 100644 --- a/php/phpxmlrpc/tests/phpunit_coverage.php +++ b/php/phpxmlrpc/tests/phpunit_coverage.php @@ -2,7 +2,7 @@ /** * Used to serve back the server-side code coverage results to phpunit-selenium * - * @copyright (C) 2007-2015 G. Giunta + * @copyright (C) 2007-2021 G. Giunta * @license code licensed under the BSD License: see file license.txt **/ @@ -11,6 +11,10 @@ $coverageFile = realpath(__DIR__ . "/../vendor/phpunit/phpunit-selenium/PHPUnit/ // has to be the same value as used in server.php $GLOBALS['PHPUNIT_COVERAGE_DATA_DIRECTORY'] = '/tmp/phpxmlrpc_coverage'; +if (!is_dir($GLOBALS['PHPUNIT_COVERAGE_DATA_DIRECTORY'])) { + mkdir($GLOBALS['PHPUNIT_COVERAGE_DATA_DIRECTORY']); +} + chdir($GLOBALS['PHPUNIT_COVERAGE_DATA_DIRECTORY']); -include_once $coverageFile; \ No newline at end of file +include_once $coverageFile;