about summary refs log tree commit diff
path: root/src/test/ui/command
AgeCommit message (Collapse)AuthorLines
2021-03-28Remove unnecessary `ignore-cloudabi` flagJohnTitor-1/+0
2021-03-09Do not attempt to unlock envlock in child process after a fork.The8472-14/+0
This is a breaking change for cases where the environment is accessed in a Command::pre_exec closure. Except for single-threaded programs these uses were not correct anyway since they aren't async-signal safe.
2021-01-29Update test-various to Ubuntu 20.04Nikita Popov-0/+1
The test command-setgroups.rs is adjusted to skip on musl, where `sysconf(_SC_NGROUPS_MAX)` always returns a dummy value of 32, even though the actual value is 65536. I'm not sure why this becomes relevant only now though, as this was apparently the case since kernel 2.6.4.
2021-01-21Update src/test/ui/command/command-setgroups.rs to ignore windowsslo1-0/+1
2021-01-21Update src/test/ui/command/command-setgroups.rsslo1-0/+6
Co-authored-by: Ashley Mannix <kodraus@hey.com>
2021-01-21Add setgroups to std::os::unix::process::CommandExtslo1-0/+19
2021-01-17Fix test to work with remote-test-server.Eric Huss-1/+7
remote-test-server does not set the current_dir, and leaves it as `/`.
2021-01-17Add test for Command::current_dir behavior.Eric Huss-0/+43
2020-11-22Drop support for cloudabi targetsLzu Tao-5/+0
2020-05-12Stabilize process_set_argv0 feature for UnixJeremy Fitzhardinge-4/+0
This stabilizes process_set_argv0 targeting 1.45.0. It has been useful in practice and seems useful as-is. The equivalent feature could be implemented for Windows, but as far as I know nobody has. That can be done separately. Tracking issue: #66510
2019-12-16Move command-related tests into command/Jeremy Fitzhardinge-0/+311