* Work around some problems in tarball checks. Nix wants to open the

DB even in read-only mode.  Should probably fix that.  Also, "or" no
  longer works like this because it's a keyword now.

svn path=/nixpkgs/trunk/; revision=34079
This commit is contained in:
Eelco Dolstra
2012-05-13 19:10:57 +00:00
parent 500c46b56b
commit 069604730b
4 changed files with 6 additions and 3 deletions
+3 -1
View File
@@ -12,11 +12,13 @@ runTests {
expr = const 2 3;
expected = 2;
};
/*
testOr = {
expr = or true false;
expected = true;
};
*/
testAnd = {
expr = and true false;