Issue #1719530 follow-up by sun: SimpleTest hasn't been converted to CMI yet; add a stop-gap rename in conf array.

8.0.x
webchick 2012-09-02 16:08:23 -07:00
parent e4c2a57830
commit aa9744b1bd
1 changed files with 3 additions and 0 deletions

View File

@ -376,6 +376,9 @@ function simpletest_script_run_one_test($test_id, $test_class) {
// Override configuration according to command line parameters.
$conf['simpletest.settings']['verbose'] = $args['verbose'];
$conf['simpletest.settings']['clear_results'] = !$args['keep-results'];
// @todo D8: Remove after converting Simpletest settings to config.
$conf['simpletest_verbose'] = $args['verbose'];
$conf['simpletest_clear_results'] = !$args['keep-results'];
$test = new $test_class($test_id);
$test->run();