about summary refs log tree commit diff
path: root/compiler/rustc_interface/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2024-04-20 10:50:39 +0000
committerbors <bors@rust-lang.org>2024-04-20 10:50:39 +0000
commit584f183dc0e0ce8d981811ebbf67886c0cfef9e0 (patch)
treeeeb41b1420087692cb681e72fa37bddef08b522c /compiler/rustc_interface/src
parenta61b14d15e4a742fb9d117d089626f5275a286c4 (diff)
parentf58ef084c9740ed917a2009dfe2035f33ceaeb55 (diff)
downloadrust-584f183dc0e0ce8d981811ebbf67886c0cfef9e0.tar.gz
rust-584f183dc0e0ce8d981811ebbf67886c0cfef9e0.zip
Auto merge of #124194 - matthiaskrgr:rollup-40s0c4q, r=matthiaskrgr
Rollup of 3 pull requests

Successful merges:

 - #123409 (Implement Modified Condition/Decision  Coverage)
 - #124104 (Fix capturing duplicated lifetimes via parent in `precise_captures` (`impl use<'...>`))
 - #124137 (Match hyphen in multi-revision comment matchers)

r? `@ghost`
`@rustbot` modify labels: rollup
Diffstat (limited to 'compiler/rustc_interface/src')
-rw-r--r--compiler/rustc_interface/src/tests.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_interface/src/tests.rs b/compiler/rustc_interface/src/tests.rs
index 9d53f0799ea..8d741ef4c1b 100644
--- a/compiler/rustc_interface/src/tests.rs
+++ b/compiler/rustc_interface/src/tests.rs
@@ -760,7 +760,7 @@ fn test_unstable_options_tracking_hash() {
     );
     tracked!(codegen_backend, Some("abc".to_string()));
     tracked!(collapse_macro_debuginfo, CollapseMacroDebuginfo::Yes);
-    tracked!(coverage_options, CoverageOptions { branch: true });
+    tracked!(coverage_options, CoverageOptions { branch: true, mcdc: true });
     tracked!(crate_attr, vec!["abc".to_string()]);
     tracked!(cross_crate_inline_threshold, InliningThreshold::Always);
     tracked!(debug_info_for_profiling, true);