We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ae4cfb commit 0373ce6Copy full SHA for 0373ce6
src/tools/compiletest/src/main.rs
@@ -15,6 +15,15 @@ fn main() {
15
eprintln!("warning: `tidy` is not installed; diffs will not be generated");
16
}
17
18
+ if !config.profiler_support && config.mode == Mode::CoverageRun {
19
+ let actioned = if config.bless { "blessed" } else { "checked" };
20
+ eprintln!(
21
+ r#"
22
+WARNING: profiler runtime is not available, so `.coverage` files won't be {actioned}
23
+help: try setting `profiler = true` in the `[build]` section of `config.toml`"#
24
+ );
25
+ }
26
+
27
log_config(&config);
28
run_tests(config);
29
0 commit comments