Skip to content

Commit 595384f

Browse files
committed
Add future compatibility warning on mixture of --release with --profile.
This was historically allowed, but it silently ignores the --release flag.
1 parent 56b9ce3 commit 595384f

File tree

2 files changed

+90
-4
lines changed

2 files changed

+90
-4
lines changed

src/cargo/util/command_prelude.rs

+13-3
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ pub trait ArgMatchesExt {
353353

354354
fn get_profile_name(
355355
&self,
356-
_config: &Config,
356+
config: &Config,
357357
default: &str,
358358
profile_checking: ProfileChecking,
359359
) -> CargoResult<InternedString> {
@@ -363,9 +363,19 @@ pub trait ArgMatchesExt {
363363
// This is an early exit, since it allows combination with `--release`.
364364
match (specified_profile, profile_checking) {
365365
// `cargo rustc` has legacy handling of these names
366-
(Some(name @ ("dev" | "test" | "bench" | "check")), ProfileChecking::LegacyRustc) |
366+
(Some(name @ ("dev" | "test" | "bench" | "check")), ProfileChecking::LegacyRustc)
367367
// `cargo fix` and `cargo check` has legacy handling of this profile name
368-
(Some(name @ "test"), ProfileChecking::LegacyTestOnly) => return Ok(InternedString::new(name)),
368+
| (Some(name @ "test"), ProfileChecking::LegacyTestOnly) => {
369+
if self._is_present("release") {
370+
config.shell().warn(
371+
"the `--release` flag should not be specified with the `--profile` flag\n\
372+
The `--release` flag will be ignored.\n\
373+
This was historically accepted, but will become an error \
374+
in a future release."
375+
)?;
376+
}
377+
return Ok(InternedString::new(name));
378+
}
369379
_ => {}
370380
}
371381

tests/testsuite/profile_custom.rs

+77-1
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ fn conflicting_usage() {
360360
authors = []
361361
"#,
362362
)
363-
.file("src/lib.rs", "")
363+
.file("src/main.rs", "fn main() {}")
364364
.build();
365365

366366
p.cargo("build --profile=dev --release")
@@ -381,6 +381,82 @@ Remove one flag or the other to continue.
381381
error: conflicting usage of --profile=release and --debug
382382
The `--debug` flag is the same as `--profile=dev`.
383383
Remove one flag or the other to continue.
384+
",
385+
)
386+
.run();
387+
388+
p.cargo("rustc --profile=dev --release")
389+
.with_stderr(
390+
"\
391+
warning: the `--release` flag should not be specified with the `--profile` flag
392+
The `--release` flag will be ignored.
393+
This was historically accepted, but will become an error in a future release.
394+
[COMPILING] foo [..]
395+
[FINISHED] dev [..]
396+
",
397+
)
398+
.run();
399+
400+
p.cargo("check --profile=dev --release")
401+
.with_status(101)
402+
.with_stderr(
403+
"\
404+
error: conflicting usage of --profile=dev and --release
405+
The `--release` flag is the same as `--profile=release`.
406+
Remove one flag or the other to continue.
407+
",
408+
)
409+
.run();
410+
411+
p.cargo("check --profile=test --release")
412+
.with_stderr(
413+
"\
414+
warning: the `--release` flag should not be specified with the `--profile` flag
415+
The `--release` flag will be ignored.
416+
This was historically accepted, but will become an error in a future release.
417+
[CHECKING] foo [..]
418+
[FINISHED] test [..]
419+
",
420+
)
421+
.run();
422+
423+
// This is OK since the two are the same.
424+
p.cargo("rustc --profile=release --release")
425+
.with_stderr(
426+
"\
427+
[COMPILING] foo [..]
428+
[FINISHED] release [..]
429+
",
430+
)
431+
.run();
432+
433+
p.cargo("build --profile=release --release")
434+
.with_stderr(
435+
"\
436+
[FINISHED] release [..]
437+
",
438+
)
439+
.run();
440+
441+
p.cargo("install --path . --profile=dev --debug")
442+
.with_stderr(
443+
"\
444+
[INSTALLING] foo [..]
445+
[FINISHED] dev [..]
446+
[INSTALLING] [..]
447+
[INSTALLED] [..]
448+
[WARNING] be sure to add [..]
449+
",
450+
)
451+
.run();
452+
453+
p.cargo("install --path . --profile=release --debug")
454+
.with_status(101)
455+
.with_stderr(
456+
"\
457+
error: conflicting usage of --profile=release and --debug
458+
The `--debug` flag is the same as `--profile=dev`.
459+
Remove one flag or the other to continue.
384460
",
385461
)
386462
.run();

0 commit comments

Comments
 (0)