X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=maintenance%2FfileOpPerfTest.php;h=9dba81830631367bcea2d4793618081f621d7939;hb=1d00b757fc894d93624cd53121aa274118f17cb2;hp=4be9f212d0934172b1e72ccd3969a1bc9cef08bc;hpb=e593d18a886a9a9286753b41e4941fcb456a616a;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/fileOpPerfTest.php b/maintenance/fileOpPerfTest.php index 4be9f212d0..9dba818306 100644 --- a/maintenance/fileOpPerfTest.php +++ b/maintenance/fileOpPerfTest.php @@ -21,10 +21,8 @@ * @ingroup Maintenance */ -$wgProfiler = array( 'class' => 'ProfilerSimpleText' ); error_reporting( E_ALL ); - -require_once( __DIR__ . '/Maintenance.php' ); +require_once __DIR__ . '/Maintenance.php'; /** * Maintenance script to test fileop performance. @@ -44,6 +42,8 @@ class TestFileOpPerformance extends Maintenance { } public function execute() { + Profiler::setInstance( new ProfilerSimpleText( array() ) ); // clear + $backend = FileBackendGroup::singleton()->get( $this->getOption( 'b1' ) ); $this->doPerfTest( $backend ); @@ -52,10 +52,8 @@ class TestFileOpPerformance extends Maintenance { $this->doPerfTest( $backend ); } - $profiler = Profiler::instance(); - $profiler->setTemplated( true ); - - //NOTE: as of MW1.21, $profiler->logData() is called implicitly by doMaintenance.php. + Profiler::instance()->setTemplated( true ); + // NOTE: as of MW1.21, $profiler->logData() is called implicitly by doMaintenance.php. } protected function doPerfTest( FileBackend $backend ) { @@ -149,4 +147,4 @@ class TestFileOpPerformance extends Maintenance { } $maintClass = "TestFileOpPerformance"; -require_once( RUN_MAINTENANCE_IF_MAIN ); +require_once RUN_MAINTENANCE_IF_MAIN;