From 4d822458eb13fc25b74db8e489008b028ec6db70 Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Mon, 13 Sep 2010 16:16:04 +0000 Subject: [PATCH] Need autoload classes, or extensions will fatal in tests --- maintenance/tests/phpunit/bootstrap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maintenance/tests/phpunit/bootstrap.php b/maintenance/tests/phpunit/bootstrap.php index 60c117cbdb..c278af130f 100644 --- a/maintenance/tests/phpunit/bootstrap.php +++ b/maintenance/tests/phpunit/bootstrap.php @@ -9,7 +9,7 @@ // This file is not included in the global scope, but rather within a function, so we must global anything we need to // have access to in the global scope explicitly -global $wgCommandLineMode, $IP, $optionsWithArgs, $wgProfiler; +global $wgCommandLineMode, $IP, $optionsWithArgs, $wgProfiler, $wgAutoloadClasses; // Evaluate the include path relative to this file $IP = dirname( dirname( dirname( dirname( __FILE__ ) ) ) ); -- 2.20.1