summaryrefslogtreecommitdiff
path: root/modules/simpletest
diff options
context:
space:
mode:
authorwebchick <webchick@24967.no-reply.drupal.org>2011-11-14 02:28:16 -0500
committerwebchick <webchick@24967.no-reply.drupal.org>2011-11-14 02:28:16 -0500
commit44ef94767fa882ba0d4b832501b72654d2c432ad (patch)
tree21eddfb7fe8d342824b5038d338903b8dd3d3875 /modules/simpletest
parentcfc35a0b3e05245e27516631724c668e11ff955d (diff)
downloadbrdo-44ef94767fa882ba0d4b832501b72654d2c432ad.tar.gz
brdo-44ef94767fa882ba0d4b832501b72654d2c432ad.tar.bz2
Issue #1002258 by tstoeckler, xjm: Fixed D6 modules satisfy D7 module dependencies.
Diffstat (limited to 'modules/simpletest')
-rw-r--r--modules/simpletest/tests/system_test.module8
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/simpletest/tests/system_test.module b/modules/simpletest/tests/system_test.module
index 9516c9183..8cb0e837f 100644
--- a/modules/simpletest/tests/system_test.module
+++ b/modules/simpletest/tests/system_test.module
@@ -264,6 +264,14 @@ function system_test_system_info_alter(&$info, $file, $type) {
if ($file->name == 'system_dependencies_test') {
$info['hidden'] = FALSE;
}
+ if (in_array($file->name, array(
+ 'system_incompatible_module_version_dependencies_test',
+ 'system_incompatible_core_version_dependencies_test',
+ 'system_incompatible_module_version_test',
+ 'system_incompatible_core_version_test',
+ ))) {
+ $info['hidden'] = FALSE;
+ }
if ($file->name == 'requirements1_test' || $file->name == 'requirements2_test') {
$info['hidden'] = FALSE;
}