Skip to content

Commit 5f6f562

Browse files
committed
Add explicit none() value variant in check-cfg
1 parent 2a3e635 commit 5f6f562

12 files changed

+99
-5
lines changed

compiler/rustc_interface/src/interface.rs

+8-1
Original file line numberDiff line numberDiff line change
@@ -199,8 +199,15 @@ pub(crate) fn parse_check_cfg(dcx: &DiagCtxt, specs: Vec<String>) -> CheckCfg {
199199
if !args.is_empty() {
200200
error!("`any()` must be empty");
201201
}
202+
} else if arg.has_name(sym::none)
203+
&& let Some(args) = arg.meta_item_list()
204+
{
205+
values.insert(None);
206+
if !args.is_empty() {
207+
error!("`none()` must be empty");
208+
}
202209
} else {
203-
error!("`values()` arguments must be string literals or `any()`");
210+
error!("`values()` arguments must be string literals, `none()` or `any()`");
204211
}
205212
}
206213
} else {

src/doc/unstable-book/src/compiler-flags/check-cfg.md

+3
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ and `cfg!(name = "value")` call. It will check that the `"value"` specified is p
3535
list of expected values. If `"value"` is not in it, then `rustc` will report an `unexpected_cfgs`
3636
lint diagnostic. The default diagnostic level for this lint is `Warn`.
3737

38+
To check for the _none_ value (ie `#[cfg(foo)]`) one can use the `none()` predicate inside
39+
`values()`: `values(none())`. It can be followed or precessed by any number of `"value"`.
40+
3841
The command line `--cfg` arguments are currently *NOT* checked but may very well be checked in
3942
the future.
4043

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
error: invalid `--check-cfg` argument: `cfg(none())` (`cfg()` arguments must be simple identifiers, `any()` or `values(...)`)
2+
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
error: invalid `--check-cfg` argument: `cfg(foo,values(bar))` (`values()` arguments must be string literals or `any()`)
1+
error: invalid `--check-cfg` argument: `cfg(foo,values(bar))` (`values()` arguments must be string literals, `none()` or `any()`)
22

Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
error: invalid `--check-cfg` argument: `cfg(foo,values("bar",bar,"bar"))` (`values()` arguments must be string literals or `any()`)
1+
error: invalid `--check-cfg` argument: `cfg(foo,values("bar",bar,"bar"))` (`values()` arguments must be string literals, `none()` or `any()`)
22

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
error: invalid `--check-cfg` argument: `cfg(foo,values(none("test")))` (`none()` must be empty)
2+

tests/ui/check-cfg/invalid-arguments.rs

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
// revisions: values_any_missing_values values_any_before_ident ident_in_values_1
88
// revisions: ident_in_values_2 unknown_meta_item_1 unknown_meta_item_2 unknown_meta_item_3
99
// revisions: mixed_values_any mixed_any any_values giberich unterminated
10+
// revisions: none_not_empty cfg_none
1011
//
1112
// compile-flags: -Z unstable-options
1213
// [anything_else]compile-flags: --check-cfg=anything_else(...)
@@ -24,9 +25,11 @@
2425
// [unknown_meta_item_1]compile-flags: --check-cfg=abc()
2526
// [unknown_meta_item_2]compile-flags: --check-cfg=cfg(foo,test())
2627
// [unknown_meta_item_3]compile-flags: --check-cfg=cfg(foo,values(test()))
28+
// [none_not_empty]compile-flags: --check-cfg=cfg(foo,values(none("test")))
2729
// [mixed_values_any]compile-flags: --check-cfg=cfg(foo,values("bar",any()))
2830
// [mixed_any]compile-flags: --check-cfg=cfg(any(),values(any()))
2931
// [any_values]compile-flags: --check-cfg=cfg(any(),values())
32+
// [cfg_none]compile-flags: --check-cfg=cfg(none())
3033
// [giberich]compile-flags: --check-cfg=cfg(...)
3134
// [unterminated]compile-flags: --check-cfg=cfg(
3235

Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
error: invalid `--check-cfg` argument: `cfg(foo,values(test()))` (`values()` arguments must be string literals or `any()`)
1+
error: invalid `--check-cfg` argument: `cfg(foo,values(test()))` (`values()` arguments must be string literals, `none()` or `any()`)
22

tests/ui/check-cfg/no-expected-values.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// compile-flags: --check-cfg=cfg(values,simple,mixed,empty)
77
// [simple]compile-flags: --check-cfg=cfg(test) --check-cfg=cfg(feature)
88
// [mixed]compile-flags: --check-cfg=cfg(test,feature)
9-
// [empty]compile-flags: --check-cfg=cfg(test,feature,values())
9+
// [empty]compile-flags: --check-cfg=cfg(test,feature,values(none()))
1010

1111
#[cfg(feature = "foo")]
1212
//~^ WARNING unexpected `cfg` condition value
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
warning: unexpected `cfg` condition value: `too`
2+
--> $DIR/values-none.rs:11:7
3+
|
4+
LL | #[cfg(foo = "too")]
5+
| ^^^--------
6+
| |
7+
| help: remove the value
8+
|
9+
= note: no expected value for `foo`
10+
= help: to expect this configuration use `--check-cfg=cfg(foo, values("too"))`
11+
= note: see <https://doc.rust-lang.org/nightly/unstable-book/compiler-flags/check-cfg.html> for more information about checking conditional configuration
12+
= note: `#[warn(unexpected_cfgs)]` on by default
13+
14+
warning: unexpected `cfg` condition value: `bar`
15+
--> $DIR/values-none.rs:16:7
16+
|
17+
LL | #[cfg(foo = "bar")]
18+
| ^^^--------
19+
| |
20+
| help: remove the value
21+
|
22+
= note: no expected value for `foo`
23+
= help: to expect this configuration use `--check-cfg=cfg(foo, values("bar"))`
24+
= note: see <https://doc.rust-lang.org/nightly/unstable-book/compiler-flags/check-cfg.html> for more information about checking conditional configuration
25+
26+
warning: 2 warnings emitted
27+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
warning: unexpected `cfg` condition value: `too`
2+
--> $DIR/values-none.rs:11:7
3+
|
4+
LL | #[cfg(foo = "too")]
5+
| ^^^--------
6+
| |
7+
| help: remove the value
8+
|
9+
= note: no expected value for `foo`
10+
= help: to expect this configuration use `--check-cfg=cfg(foo, values("too"))`
11+
= note: see <https://doc.rust-lang.org/nightly/unstable-book/compiler-flags/check-cfg.html> for more information about checking conditional configuration
12+
= note: `#[warn(unexpected_cfgs)]` on by default
13+
14+
warning: unexpected `cfg` condition value: `bar`
15+
--> $DIR/values-none.rs:16:7
16+
|
17+
LL | #[cfg(foo = "bar")]
18+
| ^^^--------
19+
| |
20+
| help: remove the value
21+
|
22+
= note: no expected value for `foo`
23+
= help: to expect this configuration use `--check-cfg=cfg(foo, values("bar"))`
24+
= note: see <https://doc.rust-lang.org/nightly/unstable-book/compiler-flags/check-cfg.html> for more information about checking conditional configuration
25+
26+
warning: 2 warnings emitted
27+

tests/ui/check-cfg/values-none.rs

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
// check-pass
2+
//
3+
// revisions: explicit implicit
4+
// compile-flags: -Zunstable-options
5+
// [explicit]compile-flags: --check-cfg=cfg(foo,values(none()))
6+
// [implicit]compile-flags: --check-cfg=cfg(foo)
7+
// [simple] compile-flags: --check-cfg=cfg(foo,values(none(),"too"))
8+
// [concat_1]compile-flags: --check-cfg=cfg(foo) --check-cfg=cfg(foo,values("too"))
9+
// [concat_2]compile-flags: --check-cfg=cfg(foo,values("too")) --check-cfg=cfg(foo)
10+
11+
#[cfg(foo = "too")]
12+
//[explicit]~^ WARNING unexpected `cfg` condition value
13+
//[implicit]~^^ WARNING unexpected `cfg` condition value
14+
fn foo_too() {}
15+
16+
#[cfg(foo = "bar")]
17+
//~^ WARNING unexpected `cfg` condition value
18+
fn foo_bar() {}
19+
20+
#[cfg(foo)]
21+
fn foo() {}
22+
23+
fn main() {}

0 commit comments

Comments
 (0)