mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
f1183f33e3
svn path=/nixpkgs/trunk/; revision=14426
8 lines
227 B
Nix
8 lines
227 B
Nix
let lib = import ./default.nix;
|
|
|
|
miscTests = import ./misc-tests.nix;
|
|
|
|
in
|
|
if lib.all (a : a == "ok") (lib.concatLists [ miscTests ]) then
|
|
throw "all tests have passed"
|
|
else "there has been a some lib test failures"
|