aboutsummaryrefslogtreecommitdiffstats
path: root/benchmark
diff options
context:
space:
mode:
authork0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-07-11 00:34:32 +0000
committerk0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-07-11 00:34:32 +0000
commit07b8ce32e449a637db76a2522cb84668e20f2709 (patch)
tree56ee6b57075af306e391e322c1d72ef7bb4216e4 /benchmark
parente51f771d783fd39f3fe556ed7109380f7928d8cd (diff)
downloadruby-07b8ce32e449a637db76a2522cb84668e20f2709.tar.gz
common.mk: upgrade benchmark_driver
benchmark/README.md: fix help output, which is changed on v0.14.6. Especially `e1::path1,arg1,...; e2::path2,arg2` part was wrong since `,` can't be used to split arguments anymore. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63945 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'benchmark')
-rw-r--r--benchmark/README.md20
1 files changed, 10 insertions, 10 deletions
diff --git a/benchmark/README.md b/benchmark/README.md
index 538cf50afd..a9c4eef850 100644
--- a/benchmark/README.md
+++ b/benchmark/README.md
@@ -27,17 +27,17 @@ benchmark-driver benchmark/*.yml
See also:
```console
-$ benchmark-driver --help
-Usage: benchmark-driver [options] [YAML|RUBY]
- -r, --runner [TYPE] Specify runner type: ips, time, memory, once (default: ips)
- -o, --output [TYPE] Specify output type: compare, simple, markdown, record (default: compare)
- -e, --executables [EXECS] Ruby executables (e1::path1,arg1,...; e2::path2,arg2;...)
- --rbenv [VERSIONS] Ruby executables in rbenv (x.x.x,arg1,...;y.y.y,arg2,...;...)
- --repeat-count [NUM] Try benchmark NUM times and use the fastest result or the worst memory usage
- --repeat-result [TYPE] Yield "best", "average" or "worst" result with --repeat-count (default: best)
+Usage: benchmark-driver [options] RUBY|YAML...
+ -r, --runner TYPE Specify runner type: ips, time, memory, once (default: ips)
+ -o, --output TYPE Specify output type: compare, simple, markdown, record (default: compare)
+ -e, --executables EXECS Ruby executables (e1::path1 arg1; e2::path2 arg2;...)
+ --rbenv VERSIONS Ruby executables in rbenv (x.x.x arg1;y.y.y arg2;...)
+ --repeat-count NUM Try benchmark NUM times and use the fastest result or the worst memory usage
+ --repeat-result TYPE Yield "best", "average" or "worst" result with --repeat-count (default: best)
--bundler Install and use gems specified in Gemfile
- --filter [REGEXP] Filter out benchmarks with given regexp
- --run-duration [SECONDS] Warmup estimates loop_count to run for this duration (default: 3)
+ --filter REGEXP Filter out benchmarks with given regexp
+ --run-duration SECONDS Warmup estimates loop_count to run for this duration (default: 3)
+ --timeout SECONDS Timeout ruby command execution with timeout(1)
-v, --verbose Verbose mode. Multiple -v options increase visilibity (max: 2)
```