]> git.proxmox.com Git - cargo.git/commitdiff
Remove -Zno-trans test.
authorEduard-Mihai Burtescu <edy.burt@gmail.com>
Tue, 15 May 2018 07:14:03 +0000 (10:14 +0300)
committerGitHub <noreply@github.com>
Tue, 15 May 2018 07:14:03 +0000 (10:14 +0300)
tests/testsuite/build.rs

index bba6fd2639fc9fc6c440c18e886f3050c7e89e43..ff7cb083b78dfc815d4dc17d50604bbd94121e9c 100644 (file)
@@ -3760,31 +3760,6 @@ fn custom_target_dir_line_parameter() {
     );
 }
 
-#[test]
-fn rustc_no_trans() {
-    if !is_nightly() {
-        return;
-    }
-
-    let p = project("foo")
-        .file(
-            "Cargo.toml",
-            r#"
-            [package]
-            name = "foo"
-            version = "0.0.1"
-            authors = []
-        "#,
-        )
-        .file("src/main.rs", "fn main() {}")
-        .build();
-
-    assert_that(
-        p.cargo("rustc").arg("-v").arg("--").arg("-Zno-trans"),
-        execs().with_status(0),
-    );
-}
-
 #[test]
 fn build_multiple_packages() {
     let p = project("foo")