rust: disable tests on darwin

See https://github.com/rust-lang/rust/issues/51006

Tests frequently fail on Darwin. Not sure why but it's easier to just disable for now.
This commit is contained in:
Matthew Justin Bauer 2018-06-03 16:56:17 -04:00 committed by GitHub
parent 93cb47a2fc
commit 332b9dedc8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,7 +10,11 @@
, targets
, targetPatches
, targetToolchains
, doCheck ? true
# Tests frequently break on Darwin
# See the rust issue: https://github.com/rust-lang/rust/issues/51006
, doCheck ? (!stdenv.isDarwin)
, broken ? false
, buildPlatform, hostPlatform
} @ args: