summary refs log tree commit diff
path: root/src/test/run-pass/command-before-exec.rs
AgeCommit message (Collapse)AuthorLines
2018-01-02Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI.Ed Schouten-0/+1
It looks like many of these tests are already disabled on emscripten, which also doesn't seem to support environment variables and subprocess spawning. Just add a similar tag for CloudABI. While there, sort some of the lists of operating systems alphabetically.
2017-10-17test: Update Emscripten failures/passingAlex Crichton-1/+1
All tests should now have annotation for *why* they're ignored on emscripten. A few tests no longer need such an annotation as well! Closes #41299
2016-08-10[emscripten] Ignore testsJan-Erik Rediger-0/+1
Most of these rely on spawning processes, which is not possible in Emscripten.
2016-05-09Utilize `Result::unwrap_err` in more places.Corey Farwell-1/+1
2016-03-25Remove static linking hack since we are now passing absolute pathsNiko Matsakis-2/+0
2016-03-12Statically link run-pass/command-before-exec so it passes not just whenever ↵Eduard Burtescu-0/+2
we happen to bootstrap perfectly.
2016-02-10std: Implement CommandExt::before_execAlex Crichton-0/+90
This is a Unix-specific function which adds the ability to register a closure to run pre-exec to configure the child process as required (note that these closures are run post-fork). cc #31398