summary refs log tree commit diff
path: root/src/test/run-pass/command-exec.rs
AgeCommit message (Collapse)AuthorLines
2016-10-18Fix some pretty printing testsVadim Petrochenkov-2/+1
2016-08-10[emscripten] Ignore testsJan-Erik Rediger-0/+1
Most of these rely on spawning processes, which is not possible in Emscripten.
2016-02-10std: Implement CommandExt::execAlex Crichton-0/+72
This commit implements the `exec` function proposed in [RFC 1359][rfc] which is a function on the `CommandExt` trait to execute all parts of a `Command::spawn` without the `fork` on Unix. More details on the function itself can be found in the comments in the commit. [rfc]: https://github.com/rust-lang/rfcs/pull/1359 cc #31398