X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=maintenance%2Fbenchmarks%2FBenchmarker.php;h=f3e2db09c27abb8c4e4d15a660f7c3f1f2f29103;hb=2c66553ed35d2bca60dfb087a9b501b5ec33d4fb;hp=3f8a8990433145d423e945baea465048e121f585;hpb=ed945112a8640fcaefa0128456602893294aee31;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/benchmarks/Benchmarker.php b/maintenance/benchmarks/Benchmarker.php index 3f8a899043..f3e2db09c2 100644 --- a/maintenance/benchmarks/Benchmarker.php +++ b/maintenance/benchmarks/Benchmarker.php @@ -22,7 +22,6 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * - * @todo Report PHP version, OS .. * @file * @ingroup Benchmark */ @@ -39,7 +38,7 @@ abstract class Benchmarker extends Maintenance { public function __construct() { parent::__construct(); - $this->addOption( 'count', "How many time to run a benchmark", false, true ); + $this->addOption( 'count', "How many times to run a benchmark", false, true ); } public function bench( array $benchs ) { @@ -76,7 +75,13 @@ abstract class Benchmarker extends Maintenance { } public function getFormattedResults() { - $ret = ''; + $ret = sprintf( "Running PHP version %s (%s) on %s %s %s\n\n", + phpversion(), + php_uname( 'm' ), + php_uname( 's' ), + php_uname( 'r' ), + php_uname( 'v' ) + ); foreach ( $this->results as $res ) { // show function with args $ret .= sprintf( "%s times: function %s(%s) :\n",