Skip to content
Snippets Groups Projects
Commit d8ca0259 authored by catch's avatar catch
Browse files

Issue #1373634 by sun: Fixed Installation profile is not installed and not...

Issue #1373634 by sun: Fixed Installation profile is not installed and not registered as module, unless identical to parent site.
parent 0bcae99c
No related branches found
No related tags found
No related merge requests found
......@@ -1355,6 +1355,13 @@ protected function setUp() {
$test_info['test_run_id'] = $this->databasePrefix;
$test_info['in_child_site'] = FALSE;
// Preset the 'install_profile' system variable, so the first call into
// system_rebuild_module_data() (in drupal_install_system()) will register
// the test's profile as a module. Without this, the installation profile of
// the parent site (executing the test) is registered, and the test
// profile's hook_install() and other hook implementations are never invoked.
$conf['install_profile'] = $this->profile;
include_once DRUPAL_ROOT . '/core/includes/install.inc';
drupal_install_system();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment