opencomposite: add meta.platforms (#357198)
[NixPkgs.git] / lib / tests / check-eval.nix
blob8bd7b605a39bdad6d8ad632591a571b31ae30b95
1 # Throws an error if any of our lib tests fail.
3 let tests = [ "misc" "systems" ];
4     all = builtins.concatLists (map (f: import (./. + "/${f}.nix")) tests);
5 in if all == []
6      then null
7    else throw (builtins.toJSON all)