about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-builtins-concat-lists.exp
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2022-10-02T16·41+0300
committertazjin <tazjin@tvl.su>2022-10-03T07·53+0000
commit939b2194fe6b0159191892d7bfc7ff527c1b0371 (patch)
tree1be59768909331bd67e29b7e98a54abaaa0330d6 /tvix/eval/src/tests/tvix_tests/eval-okay-builtins-concat-lists.exp
parent3c9520a4e56e09c59b007b2965372c7173b4e40d (diff)
feat(tvix/eval): implement builtins.concatLists r/5022
Concatenates (but not flattens) a list of lists.

Change-Id: I692e0b3e7b5a5ff93d5768d3a27849b432ec5747
Reviewed-on: https://cl.tvl.fyi/c/depot/+/6843
Autosubmit: tazjin <tazjin@tvl.su>
Reviewed-by: sterni <sternenseemann@systemli.org>
Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/eval/src/tests/tvix_tests/eval-okay-builtins-concat-lists.exp')
-rw-r--r--tvix/eval/src/tests/tvix_tests/eval-okay-builtins-concat-lists.exp1
1 files changed, 1 insertions, 0 deletions
diff --git a/tvix/eval/src/tests/tvix_tests/eval-okay-builtins-concat-lists.exp b/tvix/eval/src/tests/tvix_tests/eval-okay-builtins-concat-lists.exp
new file mode 100644
index 0000000000..64ae529ac2
--- /dev/null
+++ b/tvix/eval/src/tests/tvix_tests/eval-okay-builtins-concat-lists.exp
@@ -0,0 +1 @@
+[ [ ] [ 1 2 3 4 5 6 ] [ [ 1 ] [ 2 ] [ 3 ] ] [ 1 2 3 4 5 6 ] ]