Skip to content

Commit 5df97c6

Browse files
authored
Rollup merge of #114171 - fortanix:raoul/fix_switch-stdout_test, r=workingjubilee
Fix switch-stdout test for none unix/windows platforms PR #112390 moved tests to std. Unfortunately, there is a typo which causes issues on platforms other than unix and windows.
2 parents 4e525c1 + 9454916 commit 5df97c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/std/tests/switch-stdout.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#[cfg(any(target_family = "unix", target_family = "windows"))]
1+
#![cfg(any(target_family = "unix", target_family = "windows"))]
22

33
use std::fs::File;
44
use std::io::{Read, Write};

0 commit comments

Comments
 (0)