[pbs-devel] [PATCH proxmox 07/19] sys: add truncate option to `OpenOptions` in test case
Shannon Sterz
s.sterz at proxmox.com
Thu Mar 6 13:43:37 CET 2025
this resolves a clippy lint that checks for uses of `create()` without
`truncate()` [1].
[1]:
https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_open_options
Signed-off-by: Shannon Sterz <s.sterz at proxmox.com>
---
proxmox-sys/tests/xattr.rs | 1 +
1 file changed, 1 insertion(+)
diff --git a/proxmox-sys/tests/xattr.rs b/proxmox-sys/tests/xattr.rs
index 02d43934..42d7cdd5 100644
--- a/proxmox-sys/tests/xattr.rs
+++ b/proxmox-sys/tests/xattr.rs
@@ -14,6 +14,7 @@ fn test_fsetxattr_fgetxattr() {
let file = OpenOptions::new()
.write(true)
.create(true)
+ .truncate(true)
.open(&path)
.unwrap();
--
2.39.5
More information about the pbs-devel
mailing list