Skip to content

Commit 4dbc63e

Browse files
committed
Update some tests that now support stable.
1 parent 8e9c86c commit 4dbc63e

File tree

3 files changed

+1
-16
lines changed

3 files changed

+1
-16
lines changed

tests/testsuite/build_script.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2276,11 +2276,6 @@ fn flags_go_into_tests() {
22762276

22772277
#[cargo_test]
22782278
fn diamond_passes_args_only_once() {
2279-
// FIXME: when pipelining rides to stable, enable this test on all channels.
2280-
if !cargo_test_support::is_nightly() {
2281-
return;
2282-
}
2283-
22842279
let p = project()
22852280
.file(
22862281
"Cargo.toml",

tests/testsuite/rustc_info_cache.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,6 @@ use std::env;
44

55
#[cargo_test]
66
fn rustc_info_cache() {
7-
// FIXME: when pipelining rides to stable, enable this test on all channels.
8-
if !cargo_test_support::is_nightly() {
9-
return;
10-
}
11-
127
let p = project()
138
.file("src/main.rs", r#"fn main() { println!("hello"); }"#)
149
.build();

tests/testsuite/rustdoc.rs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use cargo_test_support::{basic_manifest, is_nightly, project};
1+
use cargo_test_support::{basic_manifest, project};
22

33
#[cargo_test]
44
fn rustdoc_simple() {
@@ -163,11 +163,6 @@ fn features() {
163163

164164
#[cargo_test]
165165
fn proc_macro_crate_type() {
166-
// NOTE - Remove this once 'rustdoc --crate-type'
167-
// rides to stable
168-
if !is_nightly() {
169-
return;
170-
}
171166
let p = project()
172167
.file(
173168
"Cargo.toml",

0 commit comments

Comments
 (0)