Skip to content

Commit 62faec8

Browse files
authored
Remove -Zno-trans test.
1 parent d601e9d commit 62faec8

File tree

1 file changed

+0
-25
lines changed

1 file changed

+0
-25
lines changed

tests/testsuite/build.rs

-25
Original file line numberDiff line numberDiff line change
@@ -3760,31 +3760,6 @@ fn custom_target_dir_line_parameter() {
37603760
);
37613761
}
37623762

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-
37883763
#[test]
37893764
fn build_multiple_packages() {
37903765
let p = project("foo")

0 commit comments

Comments
 (0)