diff options
author | Gergely Risko <errge@nilcons.com> | 2014-08-27T14·46+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-08-28T16·23+0200 |
commit | fd61069a42289da195532bf68d15dc695cca7236 (patch) | |
tree | c0bc88b587aa590d7cdd58146e63af663e1917cf /tests/check-reqs.sh | |
parent | 3f0a4bf0e7254edddaa864d23893d98da23c2977 (diff) |
Introduce allowedRequisites feature
Diffstat (limited to 'tests/check-reqs.sh')
-rw-r--r-- | tests/check-reqs.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/check-reqs.sh b/tests/check-reqs.sh new file mode 100644 index 000000000000..643c2d0cdc0d --- /dev/null +++ b/tests/check-reqs.sh @@ -0,0 +1,12 @@ +source common.sh + +RESULT=$TEST_ROOT/result + +# test1 should succeed. +nix-build -o $RESULT check-reqs.nix -A test1 + +# test{2,3,4,5} should fail. +(! nix-build -o $RESULT check-reqs.nix -A test2) +(! nix-build -o $RESULT check-reqs.nix -A test3) +(! nix-build -o $RESULT check-reqs.nix -A test4) +(! nix-build -o $RESULT check-reqs.nix -A test5) |