]> git.lizzy.rs Git - rust.git/blobdiff - compiler/rustc_interface/src/tests.rs
Rollup merge of #83437 - Amanieu:asm_syntax, r=petrochenkov
[rust.git] / compiler / rustc_interface / src / tests.rs
index b3f0c66de68c9fdd22a2ed6cd53a2830fced19c6..8e6a1ec50951a0163048a9116a0f6cd9deaaf30c 100644 (file)
@@ -2,6 +2,7 @@
 
 use rustc_data_structures::fx::FxHashSet;
 use rustc_errors::{emitter::HumanReadableErrorType, registry, ColorConfig};
+use rustc_session::config::InstrumentCoverage;
 use rustc_session::config::Strip;
 use rustc_session::config::{build_configuration, build_session_options, to_crate_config};
 use rustc_session::config::{rustc_optgroups, ErrorOutputType, ExternLocation, Options, Passes};
@@ -560,7 +561,7 @@ macro_rules! tracked {
     tracked!(inline_mir, Some(true));
     tracked!(inline_mir_threshold, Some(123));
     tracked!(inline_mir_hint_threshold, Some(123));
-    tracked!(instrument_coverage, true);
+    tracked!(instrument_coverage, Some(InstrumentCoverage::All));
     tracked!(instrument_mcount, true);
     tracked!(link_only, true);
     tracked!(merge_functions, Some(MergeFunctions::Disabled));