mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-06-27 07:48:55 +00:00
agent: fix fd-double-close problem in ut test_do_write_stream
The fd will closed on struct Process's dropping, so don't close it again manually. Fixes: #4598 Signed-off-by: Tim Zhang <tim@hyper.sh>
This commit is contained in:
parent
ac91fb7a12
commit
912641509e
@ -2262,6 +2262,7 @@ mod tests {
|
||||
if d.has_fd {
|
||||
Some(wfd)
|
||||
} else {
|
||||
unistd::close(wfd).unwrap();
|
||||
None
|
||||
}
|
||||
};
|
||||
@ -2296,13 +2297,14 @@ mod tests {
|
||||
if !d.break_pipe {
|
||||
unistd::close(rfd).unwrap();
|
||||
}
|
||||
unistd::close(wfd).unwrap();
|
||||
// XXX: Do not close wfd.
|
||||
// the fd will be closed on Process's dropping.
|
||||
// unistd::close(wfd).unwrap();
|
||||
|
||||
let msg = format!("{}, result: {:?}", msg, result);
|
||||
assert_result!(d.result, result, msg);
|
||||
}
|
||||
}
|
||||
|
||||
#[tokio::test]
|
||||
async fn test_update_container_namespaces() {
|
||||
#[derive(Debug)]
|
||||
|
Loading…
Reference in New Issue
Block a user