Clarfiy that --{test,bench} select targets
authorSteve Klabnik <steve@steveklabnik.com>
Tue, 25 Aug 2015 15:54:07 +0000 (11:54 -0400)
committerSteve Klabnik <steve@steveklabnik.com>
Tue, 25 Aug 2015 15:54:10 +0000 (11:54 -0400)
Fixes #1767

src/bin/bench.rs
src/bin/build.rs
src/bin/rustc.rs
src/bin/test.rs

index a1aabb89f65ece0ea0e641b323a89b5e3584f749..e4b5cac0c2e449492092ce7494ada071078040d3 100644 (file)
@@ -33,8 +33,8 @@ Options:
     --lib                    Benchmark only this package's library
     --bin NAME               Benchmark only the specified binary
     --example NAME           Benchmark only the specified example
-    --test NAME              Benchmark only the specified test
-    --bench NAME             Benchmark only the specified bench
+    --test NAME              Benchmark only the specified test target
+    --bench NAME             Benchmark only the specified bench target
     --no-run                 Compile, but don't run benchmarks
     -p SPEC, --package SPEC  Package to run benchmarks for
     -j N, --jobs N           The number of jobs to run in parallel
index 577baa49067754bb8268f0769cdfd3cd505d293e..984a0e752a3bfffb925b4bb00a213257c6a183fb 100644 (file)
@@ -37,8 +37,8 @@ Options:
     --lib                    Build only this package's library
     --bin NAME               Build only the specified binary
     --example NAME           Build only the specified example
-    --test NAME              Build only the specified test
-    --bench NAME             Build only the specified benchmark
+    --test NAME              Build only the specified test target
+    --bench NAME             Build only the specified benchmark target
     --release                Build artifacts in release mode, with optimizations
     --features FEATURES      Space-separated list of features to also build
     --no-default-features    Do not build the `default` feature
index 920096c2bf6750b41fe435d6c7832305852b5014..8a589091aae6c90b6bd0bda44d39aacab808692b 100644 (file)
@@ -38,8 +38,8 @@ Options:
     --lib                    Build only this package's library
     --bin NAME               Build only the specified binary
     --example NAME           Build only the specified example
-    --test NAME              Build only the specified test
-    --bench NAME             Build only the specified benchmark
+    --test NAME              Build only the specified test target
+    --bench NAME             Build only the specified benchmark target
     --release                Build artifacts in release mode, with optimizations
     --features FEATURES      Features to compile for the package
     --no-default-features    Do not compile default features for the package
index 44b6c60c8968fbfa01c2185ac811b67dad942ca2..8366a0badad6b5a7a1f0305516fbb6547ffe8001 100644 (file)
@@ -34,8 +34,8 @@ Options:
     --lib                    Test only this package's library
     --bin NAME               Test only the specified binary
     --example NAME           Test only the specified example
-    --test NAME              Test only the specified integration test
-    --bench NAME             Test only the specified benchmark
+    --test NAME              Test only the specified integration test target
+    --bench NAME             Test only the specified benchmark target
     --no-run                 Compile, but don't run tests
     -p SPEC, --package SPEC  Package to run tests for
     -j N, --jobs N           The number of jobs to run in parallel