1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

benchmark/README.md: erb_render is no longer yml but rb [ci skip]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63940 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
k0kubun 2018-07-10 15:51:29 +00:00
parent 301cb9ea7c
commit 498487ec2a

View file

@ -9,7 +9,7 @@ Execute `gem install benchmark_driver` and run a command like:
```bash
# Run a benchmark script with the ruby in the $PATH
benchmark-driver benchmark/erb_render.yml
benchmark-driver benchmark/erb_render.rb
# Run all benchmark scripts with multiple Ruby executables or options
benchmark-driver benchmark/*.yml -e /path/to/ruby -e '/path/to/ruby --jit'
@ -59,7 +59,7 @@ make benchmark ITEM=vm1 OPTS=--filter=block
# You can specify the benchmark by an exact filename instead of using the default argument:
# ARGS = $$(find $(srcdir)/benchmark -maxdepth 1 -name '*$(ITEM)*.yml' -o -name '*$(ITEM)*.rb')
make benchmark ARGS=../benchmark/erb_render.yml
make benchmark ARGS=../benchmark/erb_render.rb
# You can specify any option via $OPTS
make benchmark OPTS="--help"