We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d601e9d commit 62faec8Copy full SHA for 62faec8
tests/testsuite/build.rs
@@ -3760,31 +3760,6 @@ fn custom_target_dir_line_parameter() {
3760
);
3761
}
3762
3763
-#[test]
3764
-fn rustc_no_trans() {
3765
- if !is_nightly() {
3766
- return;
3767
- }
3768
-
3769
- let p = project("foo")
3770
- .file(
3771
- "Cargo.toml",
3772
- r#"
3773
- [package]
3774
- name = "foo"
3775
- version = "0.0.1"
3776
- authors = []
3777
- "#,
3778
- )
3779
- .file("src/main.rs", "fn main() {}")
3780
- .build();
3781
3782
- assert_that(
3783
- p.cargo("rustc").arg("-v").arg("--").arg("-Zno-trans"),
3784
- execs().with_status(0),
3785
- );
3786
-}
3787
3788
#[test]
3789
fn build_multiple_packages() {
3790
let p = project("foo")
0 commit comments