]> git.proxmox.com Git - cargo.git/commitdiff
Clarify that --jobs doesn't affect parallelism when running the resulting binary.
authorJimmy Cuadra <jimmy@jimmycuadra.com>
Wed, 20 May 2015 04:06:24 +0000 (21:06 -0700)
committerJimmy Cuadra <jimmy@jimmycuadra.com>
Wed, 20 May 2015 04:06:24 +0000 (21:06 -0700)
src/bin/bench.rs
src/bin/test.rs

index dd5bb5ee564749fb928fe5c45683d75448870c63..ecc8fd68636478005ce14aa5ae791bb74f4a2b78 100644 (file)
@@ -51,6 +51,9 @@ which indicates which package should be benchmarked. If it is not given, then
 the current package is benchmarked. For more information on SPEC and its format,
 see the `cargo help pkgid` command.
 
+The --jobs argument affects the building of the benchmark executable but does
+not affect how many jobs are used when running the benchmarks.
+
 Compilation can be customized with the `bench` profile in the manifest.
 ";
 
index 6199f917be4558e77c956855f786c51ea37da370..03ce558cff2272c89f6f1ad8f919ad5bdd0ab337 100644 (file)
@@ -55,6 +55,9 @@ which indicates which package should be tested. If it is not given, then the
 current package is tested. For more information on SPEC and its format, see the
 `cargo help pkgid` command.
 
+The --jobs argument affects the building of the test executable but does
+not affect how many jobs are used when running the tests.
+
 Compilation can be configured via the `test` profile in the manifest.
 ";