Skip to content

Commit 598c228

Browse files
committed
Use proper temporary file in object_type_from_fd() test
Use a proper temporary file inside the object_type_from_fd() test, instead of relying on the temporary directory being /tmp/ and hard coding that fact. Signed-off-by: Daniel Müller <[email protected]>
1 parent 462e13e commit 598c228

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

libbpf-rs/src/util.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,9 @@ mod tests {
161161
use std::io;
162162
use std::os::fd::AsFd;
163163

164+
use tempfile::NamedTempFile;
165+
166+
164167
#[test]
165168
fn test_roundup() {
166169
for i in 1..=256 {
@@ -212,14 +215,11 @@ mod tests {
212215
/// loaded.
213216
#[test]
214217
fn test_object_type_from_fd_with_unexpected_fds() {
215-
let path = "/tmp/libbpf-rs_not_a_bpf_object";
216-
let not_object = fs::File::create(path).expect("failed to create a plain file");
218+
let not_object = NamedTempFile::new().unwrap();
217219

218220
let _ = object_type_from_fd(not_object.as_fd())
219221
.expect_err("a common file was treated as a BPF object");
220222
let _ = object_type_from_fd(io::stdout().as_fd())
221223
.expect_err("the stdout fd was treated as a BPF object");
222-
223-
fs::remove_file(path).expect("failed to remove temporary file");
224224
}
225225
}

0 commit comments

Comments
 (0)