forked from lix-project/lix
eldritch horrors
c26599b143
using the total-attrs-printed and total-list-items-printed counters to
calculate how many attrs were elided only works properly if no nesting
is involved. once things do nest the global counter can exceed the size
of the currently printed object, leading to unsigned wrapping and great
overestimation of elided counts. counting locally in addition to global
counts fixes this.
these are functional tests because creating these objects requires the
evaluator to not be a huge amount of code, and we also want defaults to
be tested for cli usage.
fixes #14
Change-Id: Icb9a0cb21b2f4bacbc5e9dcdd8c0b9055b4088a7
5 lines
88 B
Nix
5 lines
88 B
Nix
assert (
|
|
let x = [ 1 [ 2 3 4 5 6 7 8 9 x 10 11 ] 12 ];
|
|
in builtins.deepSeq x x
|
|
); 1
|