Implemented lslocks.

This commit is contained in:
Koutheir Attouchi
2025-03-18 11:52:38 -04:00
parent 2882ec3305
commit c9df39b261
14 changed files with 1520 additions and 329 deletions

View File

@@ -15,9 +15,8 @@ fn test_column_headers() {
let header_line = stdout.lines().next().unwrap();
let cols: Vec<_> = header_line.split_whitespace().collect();
assert_eq!(cols.len(), 7);
assert_eq!(
cols,
vec!["COMMAND", "PID", "TYPE", "MODE", "M", "START", "END"]
["COMMAND", "PID", "TYPE", "SIZE", "MODE", "M", "START", "END", "PATH"]
);
}