Skip to content

Commit e404327

Browse files
committed
we would like stdout to work on Windows
1 parent 2c44118 commit e404327

File tree

6 files changed

+1
-7
lines changed

6 files changed

+1
-7
lines changed

tests/run-pass/box-pair-to-vec.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
//ignore-msvc: Stdout not implemented on Windows
2-
31
#[repr(C)]
42
#[derive(Debug)]
53
struct PairFoo {

tests/run-pass/catch.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
//ignore-msvc: Stdout not implemented on Windows
21
use std::panic::{catch_unwind, AssertUnwindSafe};
32

43
fn main() {

tests/run-pass/format.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
//ignore-msvc: Stdout not implemented on Windows
21
fn main() {
32
println!("Hello {}", 13);
43
}

tests/run-pass/hello.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
//ignore-msvc: Stdout not implemented on Windows
21
fn main() {
32
println!("Hello, world!");
43
}

tests/run-pass/issue-17877.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// except according to those terms.
1010

1111
//ignore-windows: Causes a stack overflow?!? Likely a rustc bug: https://github.com/rust-lang/rust/issues/53820
12-
//Once that bug is fixed, increase the size to 16*1024 and enable on all platforms.
12+
//FIXME: Once that bug is fixed, increase the size to 16*1024 and enable on all platforms.
1313

1414
#![feature(slice_patterns)]
1515

tests/run-pass/issue-3794.rs

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
//ignore-msvc: Stdout not implemented on Windows
1211
#![feature(box_syntax)]
1312

1413
trait T {

0 commit comments

Comments
 (0)