Skip to content
Snippets Groups Projects
Commit 86bf0772 authored by Liam Morland's avatar Liam Morland
Browse files

ISTWCMS-4591: Allow testing specified classes in run-tests.php

parent 0b527906
No related branches found
No related tags found
3 merge requests!433ISTWCMS-6296 Create test for all event dates test cases,!136Istwcms 4725 ebremner config sync,!96ISTWCMS-4591: Allow testing specified classes in run-tests.php
......@@ -10,6 +10,7 @@ $help_strings = ['-h', '--help', '-v', '--version'];
if (!$site_to_test || in_array($site_to_test, $help_strings)) {
$script = basename($_SERVER['argv'][0]);
echo 'Usage: ' . $script . " URL-TO-TEST [ADDITIONAL-ARGUMENTS ...]\n";
echo "To test specified classes, use: --class CLASSNAME[,CLASSNAME]\n";
echo "In Drupal 8, pass the argument --suppress-deprecations.\n";
echo "(The argument is not needed for Drupal 9.)\n";
exit(1);
......@@ -33,11 +34,14 @@ $_SERVER['argv'] = [
'--non-html',
'--sqlite',
'/tmp/drupal/test.sqlite',
'--module',
implode(',', $modules_to_test),
'--url',
$site_to_test,
];
// Allow testing specified classes. Default to running all module tests.
if (!array_search('--class', $original_argv)) {
$_SERVER['argv'][] = '--module';
$_SERVER['argv'][] = implode(',', $modules_to_test);
}
$_SERVER['argv'] = array_merge($_SERVER['argv'], $original_argv);
// Run the tests.
......
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