about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-empty-rec-inherit.nix
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2022-09-22T21·51+0300
committertazjin <tazjin@tvl.su>2022-09-22T23·23+0000
commit1015f2f8e7c37c5c4b4ebca799579c5f6c0d5100 (patch)
tree73ea1853815f8ddf4f720121af70580633833093 /tvix/eval/src/tests/tvix_tests/eval-okay-empty-rec-inherit.nix
parentbd9cda2af7d9fd8064b719e9135b3a48cf13c36a (diff)
fix(tvix/eval): manually count entries in recursive scopes r/4962
The previous version had a bug where we assumed that the number of
entries in an attribute set AST node would be equivalent to the number
of entries in the runtime attribute set, but due to inherit nodes
containing a variable number of entries, this did not work out.

Fixes b/199

Change-Id: I6f7f7729f3512b297cf29a2e046302ca28477854
Reviewed-on: https://cl.tvl.fyi/c/depot/+/6749
Tested-by: BuildkiteCI
Reviewed-by: sterni <sternenseemann@systemli.org>
Diffstat (limited to '')
-rw-r--r--tvix/eval/src/tests/tvix_tests/eval-okay-empty-rec-inherit.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/tvix/eval/src/tests/tvix_tests/eval-okay-empty-rec-inherit.nix b/tvix/eval/src/tests/tvix_tests/eval-okay-empty-rec-inherit.nix
new file mode 100644
index 0000000000..a1181431de
--- /dev/null
+++ b/tvix/eval/src/tests/tvix_tests/eval-okay-empty-rec-inherit.nix
@@ -0,0 +1 @@
+rec { inherit; }