File tree 2 files changed +41
-1
lines changed
2 files changed +41
-1
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ pub struct Options {
26
26
flag_tests : bool ,
27
27
flag_bench : Vec < String > ,
28
28
flag_benches : bool ,
29
+ flag_no_fail_fast : bool ,
29
30
flag_frozen : bool ,
30
31
flag_locked : bool ,
31
32
arg_args : Vec < String > ,
@@ -64,6 +65,7 @@ Options:
64
65
-q, --quiet No output printed to stdout
65
66
--color WHEN Coloring: auto, always, never
66
67
--message-format FMT Error format: human, json [default: human]
68
+ --no-fail-fast Run all benchmarks regardless of failure
67
69
--frozen Require Cargo.lock and cache are up to date
68
70
--locked Require Cargo.lock is up to date
69
71
@@ -99,7 +101,7 @@ pub fn execute(options: Options, config: &Config) -> CliResult {
99
101
options. flag_locked ) ?;
100
102
let ops = ops:: TestOptions {
101
103
no_run : options. flag_no_run ,
102
- no_fail_fast : false ,
104
+ no_fail_fast : options . flag_no_fail_fast ,
103
105
only_doc : false ,
104
106
compile_opts : ops:: CompileOptions {
105
107
config : config,
Original file line number Diff line number Diff line change @@ -879,6 +879,44 @@ fn test_bench_no_run() {
879
879
" ) ) ;
880
880
}
881
881
882
+ #[ test]
883
+ fn test_bench_no_fail_fast ( ) {
884
+ if !is_nightly ( ) { return }
885
+
886
+ let p = project ( "foo" )
887
+ . file ( "Cargo.toml" , & basic_bin_manifest ( "foo" ) )
888
+ . file ( "src/foo.rs" , r#"
889
+ #![feature(test)]
890
+ extern crate test;
891
+ fn hello() -> &'static str {
892
+ "hello"
893
+ }
894
+
895
+ pub fn main() {
896
+ println!("{}", hello())
897
+ }
898
+
899
+ #[bench]
900
+ fn bench_hello(_b: &mut test::Bencher) {
901
+ assert_eq!(hello(), "hello")
902
+ }
903
+
904
+ #[bench]
905
+ fn bench_nope(_b: &mut test::Bencher) {
906
+ assert_eq!("nope", hello())
907
+ }"# ) ;
908
+
909
+ assert_that ( p. cargo_process ( "bench" ) . arg ( "--no-fail-fast" ) ,
910
+ execs ( ) . with_status ( 101 )
911
+ . with_stderr_contains ( "\
912
+ [RUNNING] target[/]release[/]deps[/]foo-[..][EXE]")
913
+ . with_stdout_contains ( "running 2 tests" )
914
+ . with_stderr_contains ( "\
915
+ [RUNNING] target[/]release[/]deps[/]foo-[..][EXE]")
916
+ . with_stdout_contains ( "test bench_hello [..]" )
917
+ . with_stdout_contains ( "test bench_nope [..]" ) ) ;
918
+ }
919
+
882
920
#[ test]
883
921
fn test_bench_multiple_packages ( ) {
884
922
if !is_nightly ( ) { return }
You can’t perform that action at this time.
0 commit comments