From 86da882d4dccfaa823a2f0db70d1b7ae09ceec33 Mon Sep 17 00:00:00 2001 From: Alex Pott <alex.a.pott@googlemail.com> Date: Tue, 9 Sep 2014 12:44:19 +0100 Subject: [PATCH] Issue #2332071 by sun: Fixed Custom port in run-tests.sh --dburl is not parsed. --- 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 4f2d7fc30117..de7704d9f19f 100755 --- a/core/scripts/run-tests.sh +++ b/core/scripts/run-tests.sh @@ -425,6 +425,9 @@ function simpletest_script_setup_database($new = FALSE) { 'default' => $info['fragment'], ), ); + if (isset($info['port'])) { + $databases['default']['default']['port'] = $info['port']; + } } // Otherwise, use the default database connection from settings.php. else { -- GitLab