File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
tests/testsuite/cargo_test/help Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -38,12 +38,12 @@ pub fn cli() -> Command {
38
38
)
39
39
. arg_targets_all (
40
40
"Test only this package's library unit tests" ,
41
- "Test only the specified binary" ,
42
- "Test all binaries" ,
41
+ "Test only the specified binary's unit tests " ,
42
+ "Test all binaries's unit tests " ,
43
43
"Test only the specified example" ,
44
44
"Test all examples" ,
45
- "Test only the specified test target" ,
46
- "Test all test targets" ,
45
+ "Test only the specified target's integration tests " ,
46
+ "Test all test targets's integration tests and library unit tests " ,
47
47
"Test only the specified bench target" ,
48
48
"Test all bench targets" ,
49
49
"Test all targets (does not include doctests)" ,
Original file line number Diff line number Diff line change @@ -29,12 +29,12 @@ Package Selection:
29
29
30
30
Target Selection:
31
31
--lib Test only this package's library unit tests
32
- --bins Test all binaries
33
- --bin [<NAME>] Test only the specified binary
32
+ --bins Test all binaries's unit tests
33
+ --bin [<NAME>] Test only the specified binary's unit tests
34
34
--examples Test all examples
35
35
--example [<NAME>] Test only the specified example
36
- --tests Test all test targets
37
- --test [<NAME>] Test only the specified test target
36
+ --tests Test all test targets's integration tests and library unit tests
37
+ --test [<NAME>] Test only the specified target's integration tests
38
38
--benches Test all bench targets
39
39
--bench [<NAME>] Test only the specified bench target
40
40
--all-targets Test all targets (does not include doctests)
You can’t perform that action at this time.
0 commit comments