diff options
author | Vincent Ambo <mail@tazj.in> | 2023-03-17T21·10+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-03-22T13·44+0000 |
commit | ba138712e4c4a067e438a62ad20d54091f5f4446 (patch) | |
tree | 79ece7a20ac6872b344c5841eb1d93f8d20daad9 /tvix/eval/tests/nix_oracle.rs | |
parent | a5f28eea94d74f98e37487ed04a024b83b8a94ff (diff) |
feat(tvix/eval): add Evaluation::strict to toggle top-level deepseq r/6037
This makes it possible for callers to control whether they can receive partially evaluated values from an evaluation or not. We're actually flipping the default behaviour to non-strict top-level evaluation, which means that callers have to set `strict = true` on the Evaluation to get the previous behaviour. Change-Id: Ic048e9ba09c88866d4c3177d5fa07db11c4eb20e Reviewed-on: https://cl.tvl.fyi/c/depot/+/8325 Autosubmit: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org>
Diffstat (limited to 'tvix/eval/tests/nix_oracle.rs')
-rw-r--r-- | tvix/eval/tests/nix_oracle.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tvix/eval/tests/nix_oracle.rs b/tvix/eval/tests/nix_oracle.rs index e241a26f8ffd..b3ef08f87252 100644 --- a/tvix/eval/tests/nix_oracle.rs +++ b/tvix/eval/tests/nix_oracle.rs @@ -41,6 +41,7 @@ fn nix_eval(expr: &str) -> String { fn compare_eval(expr: &str) { let nix_result = nix_eval(expr); let mut eval = tvix_eval::Evaluation::new(expr, None); + eval.strict = true; eval.io_handle = Box::new(tvix_eval::StdIO); let tvix_result = eval |