You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Auto merge of #10088 - joshtriplett:stabilize-strip, r=ehuss
Stabilize the `strip` profile option, now that rustc has stable `-C strip`
rust-lang/rust#90058 stabilized `-Z strip` as `-C strip`. Stabilize the corresponding Cargo option.
Update the documentation to move it from the unstable reference to the profiles documentation.
Update the tests to account for stabilization.
Copy file name to clipboardexpand all lines: tests/testsuite/profiles.rs
+10-64
Original file line number
Diff line number
Diff line change
@@ -472,16 +472,14 @@ fn thin_lto_works() {
472
472
#[cargo_test]
473
473
fnstrip_works(){
474
474
if !is_nightly(){
475
-
// -Zstrip is unstable
475
+
// rustc 1.58 stabilized -C strip; disable the test until that ships.
476
476
return;
477
477
}
478
478
479
479
let p = project()
480
480
.file(
481
481
"Cargo.toml",
482
482
r#"
483
-
cargo-features = ["strip"]
484
-
485
483
[package]
486
484
name = "foo"
487
485
version = "0.1.0"
@@ -494,73 +492,27 @@ fn strip_works() {
494
492
.build();
495
493
496
494
p.cargo("build --release -v")
497
-
.masquerade_as_nightly_cargo()
498
495
.with_stderr(
499
496
"\
500
497
[COMPILING] foo [..]
501
-
[RUNNING] `rustc [..] -Z strip=symbols [..]`
498
+
[RUNNING] `rustc [..] -C strip=symbols [..]`
502
499
[FINISHED] [..]
503
500
",
504
501
)
505
502
.run();
506
503
}
507
504
508
-
#[cargo_test]
509
-
fnstrip_requires_cargo_feature(){
510
-
if !is_nightly(){
511
-
// -Zstrip is unstable
512
-
return;
513
-
}
514
-
515
-
let p = project()
516
-
.file(
517
-
"Cargo.toml",
518
-
r#"
519
-
[package]
520
-
name = "foo"
521
-
version = "0.1.0"
522
-
523
-
[profile.release]
524
-
strip = 'symbols'
525
-
"#,
526
-
)
527
-
.file("src/main.rs","fn main() {}")
528
-
.build();
529
-
530
-
p.cargo("build --release -v")
531
-
.masquerade_as_nightly_cargo()
532
-
.with_status(101)
533
-
.with_stderr(
534
-
"\
535
-
[ERROR] failed to parse manifest at `[CWD]/Cargo.toml`
536
-
537
-
Caused by:
538
-
feature `strip` is required
539
-
540
-
The package requires the Cargo feature called `strip`, but that feature is \
541
-
not stabilized in this version of Cargo (1.[..]).
542
-
Consider adding `cargo-features = [\"strip\"]` to the top of Cargo.toml \
543
-
(above the [package] table) to tell Cargo you are opting in to use this unstable feature.
544
-
See https://doc.rust-lang.org/nightly/cargo/reference/unstable.html#profile-strip-option \
545
-
for more information about the status of this feature.
546
-
",
547
-
)
548
-
.run();
549
-
}
550
-
551
505
#[cargo_test]
552
506
fnstrip_passes_unknown_option_to_rustc(){
553
507
if !is_nightly(){
554
-
// -Zstrip is unstable
508
+
// rustc 1.58 stabilized -C strip; disable the test until that ships.
0 commit comments