diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-09-22T15·29+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-09-22T15·29+0000 |
commit | 2ab4bc44c780d2e28647f7559664675b756f38b9 (patch) | |
tree | 39ecb0e001cf6c031e15b0246559b3f8f7a06ed9 /tests/lang | |
parent | d315210612a8d5eb52654407903544b72222130b (diff) |
* Builtin function `add' to add integers.
* Put common test functions in tests/lang/lib.nix.
Diffstat (limited to 'tests/lang')
-rw-r--r-- | tests/lang/eval-okay-arithmetic.exp | 1 | ||||
-rw-r--r-- | tests/lang/eval-okay-arithmetic.nix | 18 | ||||
-rw-r--r-- | tests/lang/eval-okay-flatten.nix | 15 | ||||
-rw-r--r-- | tests/lang/eval-okay-list.nix | 10 | ||||
-rw-r--r-- | tests/lang/eval-okay-map.exp | 2 | ||||
-rw-r--r-- | tests/lang/eval-okay-map.nix | 4 | ||||
-rw-r--r-- | tests/lang/lib.nix | 18 |
7 files changed, 45 insertions, 23 deletions
diff --git a/tests/lang/eval-okay-arithmetic.exp b/tests/lang/eval-okay-arithmetic.exp new file mode 100644 index 000000000000..433cb1c9bb6d --- /dev/null +++ b/tests/lang/eval-okay-arithmetic.exp @@ -0,0 +1 @@ +Int(1275) diff --git a/tests/lang/eval-okay-arithmetic.nix b/tests/lang/eval-okay-arithmetic.nix new file mode 100644 index 000000000000..735f01cf4e69 --- /dev/null +++ b/tests/lang/eval-okay-arithmetic.nix @@ -0,0 +1,18 @@ +with import ./lib.nix; + +let { + + range = first: last: [first] ++ (if first == last then [] else range (builtins.add first 1) last); + + /* Supposedly tail recursive version: + + range_ = accum: first: last: + if first == last then ([first] ++ accum) + else range_ ([first] ++ accum) (builtins.add first 1) last; + + range = range_ []; + */ + + body = sum (range 1 50); + +} diff --git a/tests/lang/eval-okay-flatten.nix b/tests/lang/eval-okay-flatten.nix index 2019263b8297..fe911e9683e2 100644 --- a/tests/lang/eval-okay-flatten.nix +++ b/tests/lang/eval-okay-flatten.nix @@ -1,17 +1,6 @@ -let { - - fold = op: nul: list: - if list == [] - then nul - else op (builtins.head list) (fold op nul (builtins.tail list)); +with import ./lib.nix; - concat = - fold (x: y: x + y) ""; - - flatten = x: - if builtins.isList x - then fold (x: y: (flatten x) ++ y) [] x - else [x]; +let { l = ["1" "2" ["3" ["4"] ["5" "6"]] "7"]; diff --git a/tests/lang/eval-okay-list.nix b/tests/lang/eval-okay-list.nix index 72a120d0d0f2..d433bcf908ba 100644 --- a/tests/lang/eval-okay-list.nix +++ b/tests/lang/eval-okay-list.nix @@ -1,12 +1,6 @@ -let { - - fold = op: nul: list: - if list == [] - then nul - else op (builtins.head list) (fold op nul (builtins.tail list)); +with import ./lib.nix; - concat = - fold (x: y: x + y) ""; +let { body = concat ["foo" "bar" "bla" "test"]; diff --git a/tests/lang/eval-okay-map.exp b/tests/lang/eval-okay-map.exp index ab8e7a27806c..703cb0a30dc1 100644 --- a/tests/lang/eval-okay-map.exp +++ b/tests/lang/eval-okay-map.exp @@ -1 +1 @@ -List([Call(Function1("x",OpPlus(Var("x"),Str("bar")),Pos("(string)",1,7)),Str("foo")),Call(Function1("x",OpPlus(Var("x"),Str("bar")),Pos("(string)",1,7)),Str("bla")),Call(Function1("x",OpPlus(Var("x"),Str("bar")),Pos("(string)",1,7)),Str("xyzzy"))]) +Str("foobarblabarxyzzybar") diff --git a/tests/lang/eval-okay-map.nix b/tests/lang/eval-okay-map.nix index 924446657aec..a76c1d811454 100644 --- a/tests/lang/eval-okay-map.nix +++ b/tests/lang/eval-okay-map.nix @@ -1 +1,3 @@ -map (x: x + "bar") [ "foo" "bla" "xyzzy" ] \ No newline at end of file +with import ./lib.nix; + +concat (map (x: x + "bar") [ "foo" "bla" "xyzzy" ]) \ No newline at end of file diff --git a/tests/lang/lib.nix b/tests/lang/lib.nix new file mode 100644 index 000000000000..f888453ffbea --- /dev/null +++ b/tests/lang/lib.nix @@ -0,0 +1,18 @@ +rec { + + fold = op: nul: list: + if list == [] + then nul + else op (builtins.head list) (fold op nul (builtins.tail list)); + + concat = + fold (x: y: x + y) ""; + + flatten = x: + if builtins.isList x + then fold (x: y: (flatten x) ++ y) [] x + else [x]; + + sum = fold (x: y: builtins.add x y) 0; + +} |