You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm about to xfail it. It creates some pipes, forks a process, and then does I/O on those pipes. For some reason, the forked program, cat, never sees that the input to the process is closed, meaning that the test will hang forever.
I'm not entirely sure why, and this test should hopefully get fixed soon.
The text was updated successfully, but these errors were encountered:
The std::run module is a relic from a standard library long since past, and
there's not much use to having two modules to execute processes with where one
is slightly more convenient. This commit merges the two modules, moving lots of
functionality from std::run into std::io::process and then deleting
std::run.
New things you can find in std::io::process are:
* Process::new() now only takes prog/args
* Process::configure() takes a ProcessConfig
* Process::status() is the same as run::process_status
* Process::output() is the same as run::process_output
* I/O for spawned tasks is now defaulted to captured in pipes instead of ignored
* Process::kill() was added (plus an associated green/native implementation)
* Process::wait_with_output() is the same as the old finish_with_output()
* destroy() is now signal_exit()
* force_destroy() is now signal_kill()
Closes#2625Closes#10016
I'm about to xfail it. It creates some pipes, forks a process, and then does I/O on those pipes. For some reason, the forked program,
cat
, never sees that the input to the process is closed, meaning that the test will hang forever.I'm not entirely sure why, and this test should hopefully get fixed soon.
The text was updated successfully, but these errors were encountered: