Skip to content

Commit 3044419

Browse files
committed
Auto merge of #86117 - ehuss:force-warns-underscore, r=rylev
Fix force-warns to allow dashes. The `--force-warns` flag was not allowing lint names with dashes, only supporting underscores. This changes it to allow dashes to match the behavior of the A/W/D/F flags.
2 parents a216131 + 7905473 commit 3044419

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

compiler/rustc_session/src/config.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1207,7 +1207,8 @@ pub fn get_cmd_lint_options(
12071207
);
12081208
}
12091209

1210-
let force_warns = matches.opt_strs("force-warns");
1210+
let force_warns =
1211+
matches.opt_strs("force-warns").into_iter().map(|name| name.replace('-', "_")).collect();
12111212

12121213
(lint_opts, describe_lints, lint_cap, force_warns)
12131214
}

src/test/ui/lint/force-warn/force-warn-group-allow-warning.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// compile-flags: --force-warns rust_2018_idioms -Zunstable-options
1+
// compile-flags: --force-warns rust-2018-idioms -Zunstable-options
22
// check-pass
33

44
#![allow(bare_trait_objects)]

0 commit comments

Comments
 (0)