1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 20:17:45 +00:00

Adding tests for ls. Corrected issue with ls on the present directory throwing panic!()

This commit is contained in:
Jeremiah Peschka 2016-03-25 14:25:52 -07:00
parent 825a850fa9
commit 0bb0c40c36
4 changed files with 38 additions and 2 deletions

20
Cargo.lock generated
View file

@ -35,6 +35,7 @@ dependencies = [
"link 0.0.1",
"ln 0.0.1",
"logname 0.0.1",
"ls 0.0.1",
"memchr 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
"mkdir 0.0.1",
"mkfifo 0.0.1",
@ -448,6 +449,16 @@ dependencies = [
"uucore 0.0.1",
]
[[package]]
name = "ls"
version = "0.0.1"
dependencies = [
"getopts 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)",
"pretty-bytes 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1",
]
[[package]]
name = "memchr"
version = "0.1.7"
@ -571,6 +582,15 @@ dependencies = [
"uucore 0.0.1",
]
[[package]]
name = "pretty-bytes"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"getopts 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "primal"
version = "0.2.3"