mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Update the help message on /benchmark
I wanted to point out there's --output=all.
This commit is contained in:
parent
ccfbcc7302
commit
790825db44
2 changed files with 6 additions and 4 deletions
|
@ -28,16 +28,18 @@ See also:
|
||||||
|
|
||||||
```console
|
```console
|
||||||
Usage: benchmark-driver [options] RUBY|YAML...
|
Usage: benchmark-driver [options] RUBY|YAML...
|
||||||
-r, --runner TYPE Specify runner type: ips, time, memory, once (default: ips)
|
-r, --runner TYPE Specify runner type: ips, time, memory, once, block (default: ips)
|
||||||
-o, --output TYPE Specify output type: compare, simple, markdown, record (default: compare)
|
-o, --output TYPE Specify output type: compare, simple, markdown, record, all (default: compare)
|
||||||
-e, --executables EXECS Ruby executables (e1::path1 arg1; e2::path2 arg2;...)
|
-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;...)
|
--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-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)
|
--repeat-result TYPE Yield "best", "average" or "worst" result with --repeat-count (default: best)
|
||||||
|
--alternate Alternate executables instead of running the same executable in a row with --repeat-count
|
||||||
--bundler Install and use gems specified in Gemfile
|
--bundler Install and use gems specified in Gemfile
|
||||||
--filter REGEXP Filter out benchmarks with given regexp
|
--filter REGEXP Filter out benchmarks with given regexp
|
||||||
--run-duration SECONDS Warmup estimates loop_count to run for this duration (default: 3)
|
--run-duration SECONDS Warmup estimates loop_count to run for this duration (default: 3)
|
||||||
-v, --verbose Verbose mode. Multiple -v options increase visibility (max: 2)
|
--timeout SECONDS Timeout ruby command execution with timeout(1)
|
||||||
|
-v, --verbose Verbose mode. Multiple -v options increase visilibity (max: 2)
|
||||||
```
|
```
|
||||||
|
|
||||||
## make benchmark
|
## make benchmark
|
||||||
|
|
|
@ -48,7 +48,7 @@ GEM_PATH =
|
||||||
GEM_VENDOR =
|
GEM_VENDOR =
|
||||||
|
|
||||||
BENCHMARK_DRIVER_GIT_URL = https://github.com/benchmark-driver/benchmark-driver
|
BENCHMARK_DRIVER_GIT_URL = https://github.com/benchmark-driver/benchmark-driver
|
||||||
BENCHMARK_DRIVER_GIT_REF = v0.15.17
|
BENCHMARK_DRIVER_GIT_REF = v0.15.18
|
||||||
SIMPLECOV_GIT_URL = https://github.com/colszowka/simplecov.git
|
SIMPLECOV_GIT_URL = https://github.com/colszowka/simplecov.git
|
||||||
SIMPLECOV_GIT_REF = v0.17.0
|
SIMPLECOV_GIT_REF = v0.17.0
|
||||||
SIMPLECOV_HTML_GIT_URL = https://github.com/colszowka/simplecov-html.git
|
SIMPLECOV_HTML_GIT_URL = https://github.com/colszowka/simplecov-html.git
|
||||||
|
|
Loading…
Add table
Reference in a new issue