repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #298967 from vbgl/ocaml-5.2.0
[NixPkgs.git]
/
lib
/
tests
/
check-eval.nix
blob
8bd7b605a39bdad6d8ad632591a571b31ae30b95
1
# Throws an error if any of our lib tests fail.
2
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)