Skip to content

Commit 63e5c17

Browse files
committed
bench command supports --no-fail-fast flag.
1 parent eb6cf01 commit 63e5c17

File tree

2 files changed

+41
-1
lines changed

2 files changed

+41
-1
lines changed

src/bin/bench.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ pub struct Options {
2626
flag_tests: bool,
2727
flag_bench: Vec<String>,
2828
flag_benches: bool,
29+
flag_no_fail_fast: bool,
2930
flag_frozen: bool,
3031
flag_locked: bool,
3132
arg_args: Vec<String>,
@@ -64,6 +65,7 @@ Options:
6465
-q, --quiet No output printed to stdout
6566
--color WHEN Coloring: auto, always, never
6667
--message-format FMT Error format: human, json [default: human]
68+
--no-fail-fast Run all benchmarks regardless of failure
6769
--frozen Require Cargo.lock and cache are up to date
6870
--locked Require Cargo.lock is up to date
6971
@@ -99,7 +101,7 @@ pub fn execute(options: Options, config: &Config) -> CliResult {
99101
options.flag_locked)?;
100102
let ops = ops::TestOptions {
101103
no_run: options.flag_no_run,
102-
no_fail_fast: false,
104+
no_fail_fast: options.flag_no_fail_fast,
103105
only_doc: false,
104106
compile_opts: ops::CompileOptions {
105107
config: config,

tests/bench.rs

+38
Original file line numberDiff line numberDiff line change
@@ -879,6 +879,44 @@ fn test_bench_no_run() {
879879
"));
880880
}
881881

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+
882920
#[test]
883921
fn test_bench_multiple_packages() {
884922
if !is_nightly() { return }

0 commit comments

Comments
 (0)