From 82eb06a7e6cd03e9fb1855a5b6e37d88e8e0ef5c Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Wed, 8 Jun 2016 21:01:00 +0300 Subject: [PATCH] Explain how to get help for the test harness --- src/bin/test.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/bin/test.rs b/src/bin/test.rs index e2602b1a2c1..a559fbcbce9 100644 --- a/src/bin/test.rs +++ b/src/bin/test.rs @@ -73,6 +73,10 @@ keep results readable. Test output can be recovered (e.g. for debugging) by passing `--nocapture` to the test binaries: cargo test -- --nocapture + +To get the list of all options available for the test binaries use this: + + cargo test -- --help "; pub fn execute(options: Options, config: &Config) -> CliResult> {