driver.rb: add option to specify target with rbenv

[close GH-1724]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60299 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
k0kubun 2017-10-21 15:39:35 +00:00
Родитель 3090169c9b
Коммит 8949479e1a
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -381,6 +381,11 @@ if __FILE__ == $0
opt[:execs] << path opt[:execs] << path
} }
} }
o.on('--rbenv [VERSIONS]', 'Specify benchmark targets with rbenv version (vX.X.X;vX.X.X;...)'){|v|
v.split(/;/).each{|version|
opt[:execs] << "#{version}::#{`RBENV_VERSION='#{version}' rbenv which ruby`.rstrip}"
}
}
o.on('-d', '--directory [DIRECTORY]', "Benchmark suites directory"){|d| o.on('-d', '--directory [DIRECTORY]', "Benchmark suites directory"){|d|
opt[:dir] = d opt[:dir] = d
} }