Ignore some tests on windows

This commit is contained in:
Stjepan Glavina 2020-08-19 13:41:24 +00:00
parent 2bef62ac99
commit 79706e0bc0
1 changed files with 2 additions and 0 deletions

View File

@ -95,6 +95,7 @@ fn stdout_works() {
}
#[test]
#[cfg_attr(windows, ignore)]
fn set_current_dir_works() {
future::block_on(async {
let mut cmd = Command::new("/bin/sh");
@ -107,6 +108,7 @@ fn set_current_dir_works() {
}
#[test]
#[cfg_attr(windows, ignore)]
fn stdin_works() {
future::block_on(async {
let mut p = Command::new("/bin/sh")