summaryrefslogtreecommitdiff
path: root/scripts/run-tests.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/run-tests.sh')
-rwxr-xr-xscripts/run-tests.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/run-tests.sh b/scripts/run-tests.sh
index af57336db..19527e44a 100755
--- a/scripts/run-tests.sh
+++ b/scripts/run-tests.sh
@@ -245,7 +245,8 @@ function simpletest_script_init() {
$_SERVER['HTTP_USER_AGENT'] = 'Drupal command line';
chdir(realpath(dirname(__FILE__) . '/..'));
- require_once './includes/bootstrap.inc';
+ define('DRUPAL_ROOT', getcwd());
+ require_once DRUPAL_ROOT . '/includes/bootstrap.inc';
}
/**