1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-27 11:07:44 +00:00

du: Fix incorrect block size assumption.

du and other tools like stat assume a 512 byte block. ls is the only
tool to use 1024.

Add Simple set of tests
This commit is contained in:
bootandy 2018-03-20 12:10:05 -04:00
parent fa867e93ea
commit e253406026
7 changed files with 84 additions and 4 deletions

View file

@ -52,6 +52,7 @@ generic! {
"cut", test_cut;
"dircolors", test_dircolors;
"dirname", test_dirname;
"du", test_du;
"echo", test_echo;
"env", test_env;
"expr", test_expr;