Warn when no profiler runtime means coverage tests won't be run/blessed
This commit is contained in:
parent
6ae4cfbbb0
commit
0373ce6876
@ -15,6 +15,15 @@ fn main() {
|
|||||||
eprintln!("warning: `tidy` is not installed; diffs will not be generated");
|
eprintln!("warning: `tidy` is not installed; diffs will not be generated");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if !config.profiler_support && config.mode == Mode::CoverageRun {
|
||||||
|
let actioned = if config.bless { "blessed" } else { "checked" };
|
||||||
|
eprintln!(
|
||||||
|
r#"
|
||||||
|
WARNING: profiler runtime is not available, so `.coverage` files won't be {actioned}
|
||||||
|
help: try setting `profiler = true` in the `[build]` section of `config.toml`"#
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
log_config(&config);
|
log_config(&config);
|
||||||
run_tests(config);
|
run_tests(config);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user