3
0
Fork 0
forked from mirrors/nixpkgs

buildRustPackage: support checkFlags and checkFlagsArray

This commit is contained in:
Andreas Rammhold 2019-07-25 12:34:22 +02:00
parent b6ba25ce95
commit 7391a7d584

View file

@ -149,8 +149,8 @@ stdenv.mkDerivation (args // {
checkPhase = args.checkPhase or ''
runHook preCheck
echo "Running cargo test"
cargo test
echo "Running cargo cargo test -- ''${checkFlags} ''${checkFlagsArray+''${checkFlagsArray[@]}}"
cargo test -- ''${checkFlags} ''${checkFlagsArray+"''${checkFlagsArray[@]}"}
runHook postCheck
'';