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

tests: consolidate into one crate

The main motivation is to move toward running those tests for a specific
target, that is, if a test won't run on Windows, then we shouldn't build
it. This was previously the default behavior and prevented a successful
run on AppVeyor.

I borrowed this pattern from the tests in the Cargo project.
This commit is contained in:
Joseph Crail 2016-05-22 03:46:54 -04:00
parent dfa8777540
commit 7ef4bb37a8
56 changed files with 128 additions and 207 deletions

26
Cargo.lock generated
View file

@ -12,6 +12,7 @@ dependencies = [
"comm 0.0.1",
"cp 0.0.1",
"cut 0.0.1",
"dircolors 0.0.1",
"dirname 0.0.1",
"du 0.0.1",
"echo 0.0.1",
@ -39,6 +40,7 @@ dependencies = [
"memchr 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
"mkdir 0.0.1",
"mkfifo 0.0.1",
"mknod 0.0.1",
"mktemp 0.0.1",
"mv 0.0.1",
"nice 0.0.1",
@ -207,6 +209,16 @@ dependencies = [
"uucore 0.0.1",
]
[[package]]
name = "dircolors"
version = "0.0.1"
dependencies = [
"getopts 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)",
"glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1",
]
[[package]]
name = "dirname"
version = "0.0.1"
@ -323,6 +335,11 @@ name = "getopts"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "glob"
version = "0.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "groups"
version = "0.0.1"
@ -481,6 +498,15 @@ dependencies = [
"uucore 0.0.1",
]
[[package]]
name = "mknod"
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)",
"uucore 0.0.1",
]
[[package]]
name = "mktemp"
version = "0.0.1"