mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
23 lines
666 B
Ruby
23 lines
666 B
Ruby
|
require 'benchmark_driver/runner/total'
|
||
|
|
||
|
class BenchmarkDriver::Runner::Utime < BenchmarkDriver::Runner::Total
|
||
|
METRIC = BenchmarkDriver::Metric.new(name: 'utime', unit: 's', larger_better: false)
|
||
|
|
||
|
# JobParser returns this, `BenchmarkDriver::Runner.runner_for` searches "*::Job"
|
||
|
Job = Class.new(BenchmarkDriver::DefaultJob)
|
||
|
# Dynamically fetched and used by `BenchmarkDriver::JobParser.parse`
|
||
|
JobParser = BenchmarkDriver::DefaultJobParser.for(klass: Job, metrics: [METRIC])
|
||
|
|
||
|
private
|
||
|
|
||
|
# Overriding BenchmarkDriver::Runner::Total#metric
|
||
|
def metric
|
||
|
METRIC
|
||
|
end
|
||
|
|
||
|
# Overriding BenchmarkDriver::Runner::Total#target
|
||
|
def target
|
||
|
:utime
|
||
|
end
|
||
|
end
|