projects
/
cargo.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d601e9d
)
Remove -Zno-trans test.
author
Eduard-Mihai Burtescu
<edy.burt@gmail.com>
Tue, 15 May 2018 07:14:03 +0000
(10:14 +0300)
committer
GitHub
<noreply@github.com>
Tue, 15 May 2018 07:14:03 +0000
(10:14 +0300)
tests/testsuite/build.rs
patch
|
blob
|
history
diff --git
a/tests/testsuite/build.rs
b/tests/testsuite/build.rs
index bba6fd2639fc9fc6c440c18e886f3050c7e89e43..ff7cb083b78dfc815d4dc17d50604bbd94121e9c 100644
(file)
--- a/
tests/testsuite/build.rs
+++ b/
tests/testsuite/build.rs
@@
-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")