From e21bc346c187baa95f238b6ab2e44c441b982318 Mon Sep 17 00:00:00 2001 From: sun Date: Sun, 2 Sep 2012 23:49:59 +0200 Subject: [PATCH] Fixed run-tests.sh does not set old Simpletest verbose/clear_results variables. --- core/scripts/run-tests.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/scripts/run-tests.sh b/core/scripts/run-tests.sh index 62107ab..bec330a 100755 --- a/core/scripts/run-tests.sh +++ b/core/scripts/run-tests.sh @@ -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(); -- 1.7.11.msysgit.1