mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Explain what's benchmark/lib/load.rb [ci skip]
I'm actually not using this, but ko1 is.
This commit is contained in:
parent
56b957e88a
commit
1392b821b9
1 changed files with 16 additions and 0 deletions
|
@ -1,2 +1,18 @@
|
|||
# How to use this file:
|
||||
# 1. write a `$(srcdir)/test.rb` like:
|
||||
=begin
|
||||
require_relative 'benchmark/lib/load'
|
||||
|
||||
Benchmark.driver(repeat_count: 5){|x|
|
||||
x.executable name: 'clean-miniruby', command: %w'../clean-trunk/miniruby'
|
||||
x.executable name: 'modif-miniruby', command: %w'./miniruby'
|
||||
|
||||
x.report %q{
|
||||
h = {a: 1, b: 2, c: 3, d: 4}
|
||||
}
|
||||
}
|
||||
=end
|
||||
#
|
||||
# 2. `make run`
|
||||
$:.unshift(File.join(__dir__, '../benchmark-driver/lib'))
|
||||
require 'benchmark_driver'
|
||||
|
|
Loading…
Reference in a new issue