Skip to content

Commit 4781592

Browse files
committed
Fix --check-cfg invocation with zero features
1 parent 2d14354 commit 4781592

File tree

2 files changed

+23
-16
lines changed

2 files changed

+23
-16
lines changed

src/cargo/core/compiler/mod.rs

+16-9
Original file line numberDiff line numberDiff line change
@@ -1243,24 +1243,31 @@ fn trim_paths_args(
12431243
fn check_cfg_args(cx: &Context<'_, '_>, unit: &Unit) -> Vec<OsString> {
12441244
if cx.bcx.config.cli_unstable().check_cfg {
12451245
// This generate something like this:
1246-
// - cfg(feature, values())
1246+
// - cfg()
12471247
// - cfg(feature, values("foo", "bar"))
12481248
//
12491249
// NOTE: Despite only explicitly specifying `feature`, well known names and values
12501250
// are implicitly enabled when one or more `--check-cfg` argument is passed.
1251+
// NOTE: Never generate a empty `values()` since it would mean that it's possible
1252+
// to have `cfg(feature)` without a feature name which is impossible.
12511253

12521254
let gross_cap_estimation = unit.pkg.summary().features().len() * 7 + 25;
12531255
let mut arg_feature = OsString::with_capacity(gross_cap_estimation);
1254-
arg_feature.push("cfg(feature, values(");
1255-
for (i, feature) in unit.pkg.summary().features().keys().enumerate() {
1256-
if i != 0 {
1257-
arg_feature.push(", ");
1256+
1257+
arg_feature.push("cfg(");
1258+
if !unit.pkg.summary().features().is_empty() {
1259+
arg_feature.push("feature, values(");
1260+
for (i, feature) in unit.pkg.summary().features().keys().enumerate() {
1261+
if i != 0 {
1262+
arg_feature.push(", ");
1263+
}
1264+
arg_feature.push("\"");
1265+
arg_feature.push(feature);
1266+
arg_feature.push("\"");
12581267
}
1259-
arg_feature.push("\"");
1260-
arg_feature.push(feature);
1261-
arg_feature.push("\"");
1268+
arg_feature.push(")");
12621269
}
1263-
arg_feature.push("))");
1270+
arg_feature.push(")");
12641271

12651272
vec![
12661273
OsString::from("-Zunstable-options"),

tests/testsuite/check_cfg.rs

+7-7
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@ macro_rules! x {
1515
$what, '(', $($who,)* ')', "'", "[..]")
1616
}
1717
}};
18-
($tool:tt => $what:tt of $who:tt with $($first_value:tt $($other_values:tt)*)?) => {{
18+
($tool:tt => $what:tt of $who:tt with $first_value:tt $($other_values:tt)*) => {{
1919
#[cfg(windows)]
2020
{
2121
concat!("[RUNNING] [..]", $tool, "[..] --check-cfg \"",
22-
$what, '(', $who, ", values(", $("/\"", $first_value, "/\"", $(", ", "/\"", $other_values, "/\"",)*)* "))", '"', "[..]")
22+
$what, '(', $who, ", values(", "/\"", $first_value, "/\"", $(", ", "/\"", $other_values, "/\"",)* "))", '"', "[..]")
2323
}
2424
#[cfg(not(windows))]
2525
{
2626
concat!("[RUNNING] [..]", $tool, "[..] --check-cfg '",
27-
$what, '(', $who, ", values(", $("\"", $first_value, "\"", $(", ", "\"", $other_values, "\"",)*)* "))", "'", "[..]")
27+
$what, '(', $who, ", values(", "\"", $first_value, "\"", $(", ", "\"", $other_values, "\"",)* "))", "'", "[..]")
2828
}
2929
}};
3030
}
@@ -150,7 +150,7 @@ fn well_known_names_values() {
150150

151151
p.cargo("check -v -Zcheck-cfg")
152152
.masquerade_as_nightly_cargo(&["check-cfg"])
153-
.with_stderr_contains(x!("rustc" => "cfg" of "feature" with))
153+
.with_stderr_contains(x!("rustc" => "cfg"))
154154
.run();
155155
}
156156

@@ -213,7 +213,7 @@ fn well_known_names_values_test() {
213213

214214
p.cargo("test -v -Zcheck-cfg")
215215
.masquerade_as_nightly_cargo(&["check-cfg"])
216-
.with_stderr_contains(x!("rustc" => "cfg" of "feature" with))
216+
.with_stderr_contains(x!("rustc" => "cfg"))
217217
.run();
218218
}
219219

@@ -226,8 +226,8 @@ fn well_known_names_values_doctest() {
226226

227227
p.cargo("test -v --doc -Zcheck-cfg")
228228
.masquerade_as_nightly_cargo(&["check-cfg"])
229-
.with_stderr_contains(x!("rustc" => "cfg" of "feature" with))
230-
.with_stderr_contains(x!("rustdoc" => "cfg" of "feature" with))
229+
.with_stderr_contains(x!("rustc" => "cfg"))
230+
.with_stderr_contains(x!("rustdoc" => "cfg"))
231231
.run();
232232
}
233233

0 commit comments

Comments
 (0)