Skip to content

Commit 42fbc66

Browse files
authored
Merge pull request #339 from rust-osdev/dont-forward-stdin
Test framework: Don't inherit `stdin` when spawning QEMU
2 parents 85c3536 + df90bde commit 42fbc66

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tests/runner/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ where
124124

125125
run_cmd.stdout(Stdio::piped());
126126
run_cmd.stderr(Stdio::piped());
127+
run_cmd.stdin(Stdio::null());
127128

128129
let mut child = run_cmd.spawn().unwrap();
129130

0 commit comments

Comments
 (0)