MDL-37555 Apply realpath() 2 CFG->phpunit_dataroot
authorEloy Lafuente (stronk7) <stronk7@moodle.org>
Wed, 16 Jan 2013 15:15:56 +0000 (16:15 +0100)
committerEloy Lafuente (stronk7) <stronk7@moodle.org>
Wed, 16 Jan 2013 19:54:57 +0000 (20:54 +0100)
lib/phpunit/bootstrap.php

index 6ead09f..f94c295 100644 (file)
@@ -93,6 +93,9 @@ $CFG->filepermissions = ($CFG->directorypermissions & 0666);
 if (!isset($CFG->phpunit_dataroot)) {
     phpunit_bootstrap_error(PHPUNIT_EXITCODE_CONFIGERROR, 'Missing $CFG->phpunit_dataroot in config.php, can not run tests!');
 }
+// Ensure we access to phpunit_dataroot realpath always.
+$CFG->phpunit_dataroot = realpath($CFG->phpunit_dataroot);
+
 if (isset($CFG->dataroot) and $CFG->phpunit_dataroot === $CFG->dataroot) {
     phpunit_bootstrap_error(PHPUNIT_EXITCODE_CONFIGERROR, '$CFG->dataroot and $CFG->phpunit_dataroot must not be identical, can not run tests!');
 }