From 4dbc63ef1e4130c7e11c5213a2a25d44fd4226f2 Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Thu, 7 Nov 2019 11:16:18 -0800 Subject: [PATCH] Update some tests that now support stable. --- tests/testsuite/build_script.rs | 5 ----- tests/testsuite/rustc_info_cache.rs | 5 ----- tests/testsuite/rustdoc.rs | 7 +------ 3 files changed, 1 insertion(+), 16 deletions(-) diff --git a/tests/testsuite/build_script.rs b/tests/testsuite/build_script.rs index b6209fee5..6d7f04031 100644 --- a/tests/testsuite/build_script.rs +++ b/tests/testsuite/build_script.rs @@ -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", diff --git a/tests/testsuite/rustc_info_cache.rs b/tests/testsuite/rustc_info_cache.rs index 39a6d7693..fcc39e6be 100644 --- a/tests/testsuite/rustc_info_cache.rs +++ b/tests/testsuite/rustc_info_cache.rs @@ -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(); diff --git a/tests/testsuite/rustdoc.rs b/tests/testsuite/rustdoc.rs index fd8ba6147..f270902d9 100644 --- a/tests/testsuite/rustdoc.rs +++ b/tests/testsuite/rustdoc.rs @@ -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() { @@ -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",