summaryrefslogtreecommitdiff
path: root/benchmark/lib/load.rb
blob: 31b770c4847214455300ac74790dcc698141494a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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'