Skip to content

Commit

Permalink
Update some tests that now support stable.
Browse files Browse the repository at this point in the history
  • Loading branch information
ehuss committed Nov 7, 2019
1 parent 8e9c86c commit 4dbc63e
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 16 deletions.
5 changes: 0 additions & 5 deletions tests/testsuite/build_script.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2276,11 +2276,6 @@ fn flags_go_into_tests() {

#[cargo_test]
fn diamond_passes_args_only_once() {
// FIXME: when pipelining rides to stable, enable this test on all channels.
if !cargo_test_support::is_nightly() {
return;
}

let p = project()
.file(
"Cargo.toml",
Expand Down
5 changes: 0 additions & 5 deletions tests/testsuite/rustc_info_cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,6 @@ use std::env;

#[cargo_test]
fn rustc_info_cache() {
// FIXME: when pipelining rides to stable, enable this test on all channels.
if !cargo_test_support::is_nightly() {
return;
}

let p = project()
.file("src/main.rs", r#"fn main() { println!("hello"); }"#)
.build();
Expand Down
7 changes: 1 addition & 6 deletions tests/testsuite/rustdoc.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use cargo_test_support::{basic_manifest, is_nightly, project};
use cargo_test_support::{basic_manifest, project};

#[cargo_test]
fn rustdoc_simple() {
Expand Down Expand Up @@ -163,11 +163,6 @@ fn features() {

#[cargo_test]
fn proc_macro_crate_type() {
// NOTE - Remove this once 'rustdoc --crate-type'
// rides to stable
if !is_nightly() {
return;
}
let p = project()
.file(
"Cargo.toml",
Expand Down

0 comments on commit 4dbc63e

Please sign in to comment.