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

stat: Add entries

This commit is contained in:
Knight 2016-06-01 20:20:32 +08:00
parent fd652bc285
commit ab17a5e544
3 changed files with 5 additions and 0 deletions

View file

@ -21,6 +21,7 @@ unix = [
"nice", "nice",
"nohup", "nohup",
"pathchk", "pathchk",
"stat",
"stdbuf", "stdbuf",
"timeout", "timeout",
"touch", "touch",
@ -153,6 +154,7 @@ shuf = { optional=true, path="src/shuf" }
sleep = { optional=true, path="src/sleep" } sleep = { optional=true, path="src/sleep" }
sort = { optional=true, path="src/sort" } sort = { optional=true, path="src/sort" }
split = { optional=true, path="src/split" } split = { optional=true, path="src/split" }
stat = { optional=true, path="src/stat" }
stdbuf = { optional=true, path="src/stdbuf" } stdbuf = { optional=true, path="src/stdbuf" }
sum = { optional=true, path="src/sum" } sum = { optional=true, path="src/sum" }
sync = { optional=true, path="src/sync" } sync = { optional=true, path="src/sync" }

View file

@ -113,6 +113,7 @@ UNIX_PROGS := \
nice \ nice \
nohup \ nohup \
pathchk \ pathchk \
stat \
stdbuf \ stdbuf \
timeout \ timeout \
touch \ touch \
@ -168,6 +169,7 @@ TEST_PROGS := \
seq \ seq \
sort \ sort \
split \ split \
stat \
stdbuf \ stdbuf \
sum \ sum \
tac \ tac \

View file

@ -21,6 +21,7 @@ mod sieve;
#[cfg(unix)] mod test_stdbuf; #[cfg(unix)] mod test_stdbuf;
#[cfg(unix)] mod test_touch; #[cfg(unix)] mod test_touch;
#[cfg(unix)] mod test_unlink; #[cfg(unix)] mod test_unlink;
#[cfg(unix)] mod test_stat;
mod test_base64; mod test_base64;
mod test_basename; mod test_basename;