commit | bad4ff2b87bc73e96d382ce6ef5d9d97189a6e1a | [log] [tgz] |
---|---|---|
author | David LeGare <legare@google.com> | Wed Mar 02 19:54:33 2022 +0000 |
committer | David LeGare <legare@google.com> | Thu Mar 10 22:58:07 2022 +0000 |
tree | 5010dfb78a2e59c87c8880ee271516ba00c7e977 | |
parent | 1fa1dbad97c00c5369b2e3267cb89578a28e2f0f [diff] |
Update TEST_MAPPING Test: cd external/rust/crates && atest --host -c Change-Id: Ib8b232f6d91595cbbd74accfc10417e1dc3a4713
A library for passing arbitrary file descriptors when spawning child processes.
use command_fds::{CommandFdExt, FdMapping}; use std::fs::File; use std::os::unix::io::AsRawFd; use std::process::Command; // Open a file. let file = File::open("Cargo.toml").unwrap(); // Prepare to run `ls -l /proc/self/fd` with some FDs mapped. let mut command = Command::new("ls"); command.arg("-l").arg("/proc/self/fd"); command .fd_mappings(vec![ // Map `file` as FD 3 in the child process. FdMapping { parent_fd: file.as_raw_fd(), child_fd: 3, }, // Map this process's stdin as FD 5 in the child process. FdMapping { parent_fd: 0, child_fd: 5, }, ]) .unwrap(); // Spawn the child process. let mut child = command.spawn().unwrap(); child.wait().unwrap();
Licensed under the Apache License, Version 2.0.
If you want to contribute to the project, see details of how we accept contributions.