mirror of
https://github.com/uutils/coreutils
synced 2024-12-14 15:22:38 +00:00
Merge pull request #5604 from cakebaker/ls_fix_padding
ls: fix padding of size column when using `-l`
This commit is contained in:
commit
e24d6b2fbd
2 changed files with 16 additions and 1 deletions
|
@ -3228,7 +3228,7 @@ fn calculate_padding_collection(
|
|||
padding_collections.minor = minor_len.max(padding_collections.minor);
|
||||
padding_collections.size = size_len
|
||||
.max(padding_collections.size)
|
||||
.max(padding_collections.major + padding_collections.minor + 2usize);
|
||||
.max(padding_collections.major);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1023,6 +1023,21 @@ fn test_ls_long_format() {
|
|||
).unwrap());
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_ls_long_padding_of_size_column_with_multiple_files() {
|
||||
let (at, mut ucmd) = at_and_ucmd!();
|
||||
|
||||
at.mkdir("dir");
|
||||
at.touch("dir/a");
|
||||
at.touch("dir/b");
|
||||
|
||||
ucmd.arg("-l")
|
||||
.arg("dir")
|
||||
.succeeds()
|
||||
.stdout_contains(" 0 ")
|
||||
.stdout_does_not_contain(" 0 ");
|
||||
}
|
||||
|
||||
/// This test tests `ls -laR --color`.
|
||||
/// This test is mainly about coloring, but, the recursion, symlink `->` processing,
|
||||
/// and `.` and `..` being present in `-a` all need to work for the test to pass.
|
||||
|
|
Loading…
Reference in a new issue