mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 03:27:44 +00:00
chore: manual inline formatting
Minor manual cleanup - inlined many format args. This makes the code a bit more readable, and helps spot a few inefficiencies and possible bugs. Note that `&foo` in a `format!` parameter results in a 6% extra performance cost, and does not get inlined by the compiler (yet).
This commit is contained in:
parent
b7bf8c9467
commit
982805d3cd
29 changed files with 133 additions and 183 deletions
|
@ -243,8 +243,7 @@ mod linux_only {
|
|||
);
|
||||
assert!(
|
||||
result.stderr_str().contains(message),
|
||||
"Expected to see error message fragment {} in stderr, but did not.\n stderr = {}",
|
||||
message,
|
||||
"Expected to see error message fragment {message} in stderr, but did not.\n stderr = {}",
|
||||
std::str::from_utf8(result.stderr()).unwrap(),
|
||||
);
|
||||
}
|
||||
|
@ -274,9 +273,8 @@ mod linux_only {
|
|||
let compare = at.read(name);
|
||||
assert!(
|
||||
compare.len() < contents.len(),
|
||||
"Too many bytes ({}) written to {} (should be a short count from {})",
|
||||
"Too many bytes ({}) written to {name} (should be a short count from {})",
|
||||
compare.len(),
|
||||
name,
|
||||
contents.len()
|
||||
);
|
||||
assert!(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue