aboutsummaryrefslogtreecommitdiffstats
path: root/benchmark
diff options
context:
space:
mode:
authork0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-07-10 15:51:29 +0000
committerk0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-07-10 15:51:29 +0000
commit236e1718e55ba4cd20badae6edb3e6e70787edd6 (patch)
treed79e78c40d4c7b4e48205c67ea114c890901d920 /benchmark
parent9c642f43af35e492b4526afc3eeaca2d5645f21f (diff)
downloadruby-236e1718e55ba4cd20badae6edb3e6e70787edd6.tar.gz
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
Diffstat (limited to 'benchmark')
-rw-r--r--benchmark/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/benchmark/README.md b/benchmark/README.md
index 05059af72d..a21cb4d324 100644
--- a/benchmark/README.md
+++ b/benchmark/README.md
@@ -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"